Skip to content

Commit

Permalink
fix: spell mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Vardhaman619 committed Oct 16, 2024
1 parent fbaace5 commit d9f2503
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const AdvancedSettingsToggle = () => {
setIsAdvancedModeEnabled(newValue);
};

const toogleAdvancedMode = () => {
const toggleAdvancedMode = () => {
setIsAdvancedModeEnabled((current) => !current);
};

Expand All @@ -58,7 +58,7 @@ export const AdvancedSettingsToggle = () => {
<StyledIconTool size={12} color={MAIN_COLORS.yellow} />
</StyledIconContainer>
<StyledToggleContainer>
<StyledText onClick={toogleAdvancedMode}>Advanced:</StyledText>
<StyledText onClick={toggleAdvancedMode}>Advanced:</StyledText>
<Toggle
onChange={onChange}
color={MAIN_COLORS.yellow}
Expand Down

0 comments on commit d9f2503

Please sign in to comment.