Skip to content

Commit

Permalink
removed preferences font values
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjai0py committed Feb 16, 2024
1 parent cf32211 commit 3d8917c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/bruno-electron/src/store/preferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ const defaultPreferences = {
font: {
codeFont: 'default'
},
fontSize: {
fontSize: 14
},
proxy: {
enabled: false,
protocol: 'http',
Expand Down Expand Up @@ -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']),
Expand Down

0 comments on commit 3d8917c

Please sign in to comment.