diff options
author | dan <dan.abramov@gmail.com> | 2024-10-29 23:02:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-29 23:02:48 +0000 |
commit | a22685c34542d43a71c3496df28e86207ec7fbed (patch) | |
tree | 8422153468c9e7707956dae05d68617e9bbdf0d0 /src/view/shell/bottom-bar/BottomBarWeb.tsx | |
parent | 0ae64a1e0a3c3c6436b5edd0539ba9022a474ae8 (diff) | |
download | voidsky-a22685c34542d43a71c3496df28e86207ec7fbed.tar.zst |
Sort imports (#6009)
* Mark import sort/order/style rules as error * npm run lint -- --fix
Diffstat (limited to 'src/view/shell/bottom-bar/BottomBarWeb.tsx')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBarWeb.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/shell/bottom-bar/BottomBarWeb.tsx b/src/view/shell/bottom-bar/BottomBarWeb.tsx index 21c253ee0..35d385593 100644 --- a/src/view/shell/bottom-bar/BottomBarWeb.tsx +++ b/src/view/shell/bottom-bar/BottomBarWeb.tsx @@ -13,16 +13,16 @@ import {getCurrentRoute, isTab} from '#/lib/routes/helpers' import {makeProfileLink} from '#/lib/routes/links' import {CommonNavigatorParams} from '#/lib/routes/types' import {s} from '#/lib/styles' +import {useUnreadMessageCount} from '#/state/queries/messages/list-converations' +import {useUnreadNotifications} from '#/state/queries/notifications/unread' import {useSession} from '#/state/session' import {useLoggedOutViewControls} from '#/state/shell/logged-out' import {useCloseAllActiveElements} from '#/state/util' -import {useUnreadMessageCount} from 'state/queries/messages/list-converations' -import {useUnreadNotifications} from 'state/queries/notifications/unread' import {Button} from '#/view/com/util/forms/Button' +import {Link} from '#/view/com/util/Link' import {Text} from '#/view/com/util/text/Text' import {Logo} from '#/view/icons/Logo' import {Logotype} from '#/view/icons/Logotype' -import {Link} from 'view/com/util/Link' import { Bell_Filled_Corner0_Rounded as BellFilled, Bell_Stroke2_Corner0_Rounded as Bell, |