diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/components/Drawer/Drawer.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Drawer/Drawer.tsx b/src/components/Drawer/Drawer.tsx index 81b2fbf..a111a06 100644 --- a/src/components/Drawer/Drawer.tsx +++ b/src/components/Drawer/Drawer.tsx @@ -73,7 +73,7 @@ const Drawer: React.FC<PropTypes> = React.memo(({ isOpen, setIsOpen }) => { disableBackdropTransition={!iOS} disableDiscovery={iOS} > - <IconButton onClick={handleClose} style={{width: '48px'}}> + <IconButton onClick={handleClose} style={{ width: '48px' }}> <CloseIcon /> </IconButton> {user && <UserInfo user={user} />} |