summaryrefslogtreecommitdiff
path: root/client/src/components/Desktop.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-05-17 16:13:44 -0700
committerMichael Hunteman <michael@huntm.net>2024-05-17 16:13:44 -0700
commit141d90b13cb6983d77bbde589eb57b1c75775262 (patch)
tree4765087b7130de1135df468fcd5941b751f2be58 /client/src/components/Desktop.tsx
parent8a6017c059129fa2da1a13d7a8729794e51561de (diff)
Switch light and dark mode toggles
Diffstat (limited to 'client/src/components/Desktop.tsx')
-rw-r--r--client/src/components/Desktop.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/components/Desktop.tsx b/client/src/components/Desktop.tsx
index 13de4ee..72b583d 100644
--- a/client/src/components/Desktop.tsx
+++ b/client/src/components/Desktop.tsx
@@ -20,7 +20,7 @@ function Desktop() {
</Button>
))}
<IconButton color="inherit" onClick={toggleColorMode}>
- {theme.palette.mode === 'dark' ? <LightModeIcon /> : <DarkModeIcon />}
+ {theme.palette.mode === 'dark' ? <DarkModeIcon /> : <LightModeIcon />}
</IconButton>
</div>
);