diff --git a/src/renderer/components/InputBox/InputBox.tsx b/src/renderer/components/InputBox/InputBox.tsx index 22788a59b7..8b177c6c66 100644 --- a/src/renderer/components/InputBox/InputBox.tsx +++ b/src/renderer/components/InputBox/InputBox.tsx @@ -164,6 +164,7 @@ const InputBox = forwardRef( const { height: viewportHeight } = useViewportSize() const pasteLongTextAsAFile = useSettingsStore((state) => state.pasteLongTextAsAFile) const shortcuts = useSettingsStore((state) => state.shortcuts) + const inputBoxFontSize = useSettingsStore((state) => state.inputBoxFontSize) const widthFull = useUIStore((s) => s.widthFull) || fullWidth const saveBlob = useSaveBlob() @@ -917,7 +918,7 @@ const InputBox = forwardRef(