Skip to content

Commit

Permalink
prettifying code to pass linter
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewasche committed Oct 17, 2024
1 parent ab8ff97 commit 9a5f81a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function ColorModeToggle({
title={title}
aria-label={title}
aria-live="polite"
aria-pressed={(value==='dark' ? 'true' : 'false')}>
aria-pressed={value === 'dark' ? 'true' : 'false'}>
<IconLightMode
className={clsx(styles.toggleIcon, styles.lightToggleIcon)}
/>
Expand Down

0 comments on commit 9a5f81a

Please sign in to comment.