diff options
author | ilyayudovin <ilyayudovin123@gmail.com> | 2020-08-17 01:59:08 +0300 |
---|---|---|
committer | ilyayudovin <ilyayudovin123@gmail.com> | 2020-08-17 01:59:08 +0300 |
commit | a7ad05000a50000d99cc0cabc889cfd2b3075ce6 (patch) | |
tree | 9b2ea70359884fb2dce887009b76cecdcd23c065 /src/components | |
parent | 6acc5d4038abce3d38cfbe7288c33807342091a6 (diff) | |
download | which-ui-a7ad05000a50000d99cc0cabc889cfd2b3075ce6.tar.gz |
fix: clear eslint errors
Diffstat (limited to 'src/components')
-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} />} |