Skip to content

Commit a64f04b

Browse files
committed
formatting
1 parent 46ade6f commit a64f04b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,6 @@ function SmallScreenLayout({
384384
if (hasPath) setIsFooterCollapsed(false)
385385
}, [route.routingResult.paths])
386386

387-
388387
return (
389388
<>
390389
<div className={styles.smallScreenSidebar}>

src/sidebar/search/AddressInput.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ export default function AddressInput(props: AddressInputProps) {
145145
}
146146
// Enter: focus next address input, or blur if last
147147
if (event.key === 'Enter') {
148-
const next = document.querySelector<HTMLElement>('[data-search-box]')!
148+
const next = document
149+
.querySelector<HTMLElement>('[data-search-box]')!
149150
.querySelectorAll<HTMLInputElement>('input[type="text"]')[props.index + 1]
150151
if (next) next.focus()
151152
else searchInput.current!.blur()

0 commit comments

Comments
 (0)