We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4a0799 commit e08d864Copy full SHA for e08d864
ui/components/MessageInputActions/Focus.tsx
@@ -83,15 +83,15 @@ const Focus = ({
83
{focusMode !== 'webSearch' ? (
84
<div className="flex flex-row items-center space-x-1">
85
{focusModes.find((mode) => mode.key === focusMode)?.icon}
86
- <p className="text-xs font-medium">
+ <p className="text-xs font-medium hidden lg:block">
87
{focusModes.find((mode) => mode.key === focusMode)?.title}
88
</p>
89
<ChevronDown size={20} className="-translate-x-1" />
90
</div>
91
) : (
92
93
<ScanEye size={20} />
94
- <p className="text-xs font-medium">Focus</p>
+ <p className="text-xs font-medium hidden lg:block">Focus</p>
95
96
)}
97
</PopoverButton>
0 commit comments