Fix #1059: Replace "Inbox" by "Notifications" in navigation (#1063)

* Fix #1038: Logout button should be change to gray

* Fix #1059: Replace Inbox by Notifications in navigation

* Fixed lint issues

* Fixed the import
This commit is contained in:
Pranav 2023-08-04 20:11:49 +05:30 committed by GitHub
parent c790cc5d0c
commit a8856516bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -33,4 +33,3 @@ services:
POSTGRES_PASSWORD: postgrespassword POSTGRES_PASSWORD: postgrespassword
ports: ports:
- "5432" - "5432"

View File

@ -4,9 +4,9 @@ import { useTheme } from '@emotion/react';
import { useCommandMenu } from '@/command-menu/hooks/useCommandMenu'; import { useCommandMenu } from '@/command-menu/hooks/useCommandMenu';
import { SettingsNavbar } from '@/settings/components/SettingsNavbar'; import { SettingsNavbar } from '@/settings/components/SettingsNavbar';
import { import {
IconBell,
IconBuildingSkyscraper, IconBuildingSkyscraper,
IconCheckbox, IconCheckbox,
IconInbox,
IconSearch, IconSearch,
IconSettings, IconSettings,
IconTargetArrow, IconTargetArrow,
@ -36,9 +36,9 @@ export function AppNavbar() {
}} }}
/> />
<NavItem <NavItem
label="Inbox" label="Notifications"
to="/inbox" to="/inbox"
icon={<IconInbox size={theme.icon.size.md} />} icon={<IconBell size={theme.icon.size.md} />}
soon={true} soon={true}
/> />
<NavItem <NavItem

View File

@ -6,6 +6,7 @@ export { IconTrash } from '@tabler/icons-react';
export { IconLayoutSidebarRightCollapse } from '@tabler/icons-react'; export { IconLayoutSidebarRightCollapse } from '@tabler/icons-react';
export { IconLayoutSidebarLeftCollapse } from '@tabler/icons-react'; export { IconLayoutSidebarLeftCollapse } from '@tabler/icons-react';
export { IconUser } from '@tabler/icons-react'; export { IconUser } from '@tabler/icons-react';
export { IconBell } from '@tabler/icons-react';
export { IconList } from '@tabler/icons-react'; export { IconList } from '@tabler/icons-react';
export { IconInbox } from '@tabler/icons-react'; export { IconInbox } from '@tabler/icons-react';
export { IconSearch } from '@tabler/icons-react'; export { IconSearch } from '@tabler/icons-react';