From c05922715f7bb985409730cb4eae5e2cad75dc10 Mon Sep 17 00:00:00 2001 From: Barnabas Nsoh Date: Fri, 13 Dec 2024 20:10:01 +0000 Subject: [PATCH] Fix lint --- CHANGELOG.md | 1 + .../selfie-capture-instructions/SelfieCaptureInstructions.js | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc78a0cc..2fd98b1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + - Handle errors gracefully - Fixed document capture not hidden when `hide_attribution` is specified - Cancel button on the selfie capture instructions screen will now be hidden when back button is hidden diff --git a/packages/web-components/components/selfie/src/selfie-capture-instructions/SelfieCaptureInstructions.js b/packages/web-components/components/selfie/src/selfie-capture-instructions/SelfieCaptureInstructions.js index 31095e9b..95320b18 100644 --- a/packages/web-components/components/selfie/src/selfie-capture-instructions/SelfieCaptureInstructions.js +++ b/packages/web-components/components/selfie/src/selfie-capture-instructions/SelfieCaptureInstructions.js @@ -631,9 +631,7 @@ class SelfieCaptureInstructions extends HTMLElement { } static get observedAttributes() { - return [ - 'show-navigation', - ]; + return ['show-navigation']; } }