diff --git a/packages/ui/src/components/chat/ChatInput.tsx b/packages/ui/src/components/chat/ChatInput.tsx index 183df1ee..dfd79904 100644 --- a/packages/ui/src/components/chat/ChatInput.tsx +++ b/packages/ui/src/components/chat/ChatInput.tsx @@ -1128,7 +1128,6 @@ const ChatInputComponent: React.FC = ({ onOpenSettings, scrollTo const inputBarOffset = useUIStore((state) => state.inputBarOffset); const persistChatDraft = useUIStore((state) => state.persistChatDraft); const inputSpellcheckEnabled = useUIStore((state) => state.inputSpellcheckEnabled); - const editorFontSize = useUIStore((state) => state.editorFontSize); const isExpandedInput = useUIStore((state) => state.isExpandedInput); const setExpandedInput = useUIStore((state) => state.setExpandedInput); const setTimelineDialogOpen = useUIStore((state) => state.setTimelineDialogOpen); @@ -5312,7 +5311,6 @@ const ChatInputComponent: React.FC = ({ onOpenSettings, scrollTo maxHeight: !isComposerExpanded && textareaSize ? `${textareaSize.maxHeight}px` : undefined, borderTopLeftRadius: chatInputRadius, borderTopRightRadius: chatInputRadius, - fontSize: `${editorFontSize}px`, }} rows={1} />