diff --git a/packages/web/src/components/chat/GifPicker.tsx b/packages/web/src/components/chat/GifPicker.tsx index 44f25719..a917a982 100644 --- a/packages/web/src/components/chat/GifPicker.tsx +++ b/packages/web/src/components/chat/GifPicker.tsx @@ -79,7 +79,7 @@ export function GifPicker({ onGifSelect }: GifPickerProps) { }; return ( -
+
{/* Search */}
void; onEmojiSelect: (emoji: { native: string }) => void; onGifSelect: (url: string) => void; - onStickerSelect: (sticker: Sticker) => void; anchorRef: React.RefObject; gifEnabled: boolean; - stickersEnabled: boolean; onTabChange: (tab: InputPopoverTab) => void; } @@ -24,10 +20,8 @@ export function InputPopover({ onClose, onEmojiSelect, onGifSelect, - onStickerSelect, anchorRef, gifEnabled, - stickersEnabled, onTabChange, }: InputPopoverProps) { const floatingRef = useRef(null); @@ -105,9 +99,6 @@ export function InputPopover({ if (gifEnabled) { availableTabs.splice(0, 0, { key: 'gif', label: 'GIF' }); } - if (stickersEnabled) { - availableTabs.push({ key: 'stickers', label: 'Stickers' }); - } const showTabs = availableTabs.length > 1; @@ -117,7 +108,7 @@ export function InputPopover({ className="fixed z-[300] animate-slide-up" style={{ top: -9999, left: -9999 }} > -
+
{/* Tab bar */} {showTabs && (
@@ -145,9 +136,6 @@ export function InputPopover({ {activeTab === 'gif' && gifEnabled && ( )} - {activeTab === 'stickers' && stickersEnabled && ( - - )}
, diff --git a/packages/web/src/styles/globals.css b/packages/web/src/styles/globals.css index 13552da7..f5758d52 100644 --- a/packages/web/src/styles/globals.css +++ b/packages/web/src/styles/globals.css @@ -303,7 +303,6 @@ --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; border: none !important; background: transparent !important; - width: 100% !important; max-height: 400px; }