Skip to content

Commit

Permalink
fix(site/ColorModeToggle/ColorModeToggle.tsx): change ColorMode title…
Browse files Browse the repository at this point in the history
… colour to color
  • Loading branch information
sukvvon committed Aug 29, 2024
1 parent e0a326b commit 2efaf81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/src/ColorModeToggle/ColorModeToggle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const ColorModeToggle = () => {
borderRadius="full"
cursor="pointer"
className={styles.root}
title="Toggle colour mode"
title="Toggle color mode"
onClick={() => setColorMode(colorMode === 'light' ? 'dark' : 'light')}
/>
);
Expand Down

0 comments on commit 2efaf81

Please sign in to comment.