Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
incognitojam committed Feb 3, 2025
1 parent e769802 commit 797625f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pages/dashboard/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import storage from '~/utils/storage'
import Button from '~/components/material/Button'
import Drawer, { DrawerToggleButton, useDrawerContext } from '~/components/material/Drawer'
import Icon from '~/components/material/Icon'
import IconButton from '~/components/material/IconButton'
import TopAppBar from '~/components/material/TopAppBar'

import DeviceList from './components/DeviceList'
Expand All @@ -29,7 +30,10 @@ const DashboardDrawer: VoidComponent<DashboardDrawerProps> = (props) => {
const onClose = () => setOpen(false)
return (
<>
<TopAppBar component="h1">
<TopAppBar
component="h1"
leading={<IconButton onClick={onClose}>arrow_back</IconButton>}
>
comma connect
</TopAppBar>
<h2 class="mx-4 mb-2 text-label-sm">
Expand Down

0 comments on commit 797625f

Please sign in to comment.