fix: Fixes issue where the Super mobile toolbar would not correctly close on dismissing keyboard
This commit is contained in:
@@ -198,8 +198,12 @@ const MobileToolbarPlugin = () => {
|
||||
return (
|
||||
<>
|
||||
{modal}
|
||||
<div tabIndex={-1} className="flex w-full flex-shrink-0 border-t border-border bg-contrast" ref={toolbarRef}>
|
||||
<div className={classNames('flex items-center gap-1 overflow-x-auto', '[&::-webkit-scrollbar]:h-0')}>
|
||||
<div className="flex w-full flex-shrink-0 border-t border-border bg-contrast">
|
||||
<div
|
||||
tabIndex={-1}
|
||||
className={classNames('flex items-center gap-1 overflow-x-auto', '[&::-webkit-scrollbar]:h-0')}
|
||||
ref={toolbarRef}
|
||||
>
|
||||
{items.map((item) => {
|
||||
return (
|
||||
<button
|
||||
|
||||
Reference in New Issue
Block a user