diff --git a/packages/bruno-electron/src/store/preferences.js b/packages/bruno-electron/src/store/preferences.js index f26da4c384..e23cbe7844 100644 --- a/packages/bruno-electron/src/store/preferences.js +++ b/packages/bruno-electron/src/store/preferences.js @@ -22,9 +22,6 @@ const defaultPreferences = { font: { codeFont: 'default' }, - fontSize: { - fontSize: 14 - }, proxy: { enabled: false, protocol: 'http', @@ -53,9 +50,6 @@ const preferencesSchema = Yup.object().shape({ font: Yup.object().shape({ codeFont: Yup.string().nullable() }), - fontSize: Yup.object().shape({ - fontSize: Yup.number().min(1).max(20).nullable() - }), proxy: Yup.object({ enabled: Yup.boolean(), protocol: Yup.string().oneOf(['http', 'https', 'socks4', 'socks5']),