File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 } >
Original file line number Diff line number Diff 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 ( )
You can’t perform that action at this time.
0 commit comments