Skip to content

Commit

Permalink
fix: disable autoFocus
Browse files Browse the repository at this point in the history
  • Loading branch information
borcherd authored and chambaz committed Dec 2, 2024
1 parent 0c534ca commit bb2123f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const BankListCommand = ({ selectedBank, onSetSearchQuery, onClose, child
placeholder="Search token..."
wrapperClassName="fixed mx-2 lg:mx-0 bg-mfi-action-box-background w-[calc(100%-30px)] px-4 lg:pl-3 border rounded-lg border-border z-40 flex justify-between"
className="h-12"
autoFocus={true}
autoFocus={false}
onValueChange={(value) => onSetSearchQuery(value)}
/>
<button onClick={() => onClose()} className={cn("fixed z-50", isMobile ? "top-9 right-4" : "top-8 right-6")}>
Expand Down

0 comments on commit bb2123f

Please sign in to comment.