Skip to content

Commit

Permalink
Update toggle values and descriptions in types.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
LVivona committed Jul 26, 2024
1 parent 1abce0a commit 9138dda
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,29 @@ export const initialState: AppState = {
},
leetspeak: {
type: 'toggle',
value: false,
description: "Convert words into leetspeak"
value: true,
description: "Convert words into 1337."
},
base64: {
type: 'toggle',
value: false,
description: "Convert words into base64"
value: true,
description: "Convert words into base64."
},
binary: {
type: 'toggle',
value: true,
description: "Convert words into binary."
},
emoji: {
type: 'toggle',
value: true,
description: "Convert words into emojis."
},
// theme: {
// type : 'dropdown',
// value: 'dark',
// options: ['dark', 'light'],
// description: "Theme Settings"
// }
}
};

0 comments on commit 9138dda

Please sign in to comment.