We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c10adfb commit 48d19d8Copy full SHA for 48d19d8
frontend/src/layouts/AppLayout/hooks.ts
@@ -43,16 +43,16 @@ export const useSideNavigation = () => {
43
text: t('navigation.settings'),
44
href: ROUTES.USER.DETAILS.FORMAT(userName),
45
},
46
- process.env.UI_VERSION === 'sky' && {
47
- type: 'link',
48
- text: t('navigation.billing'),
49
- href: billingUrl,
50
- },
51
{
52
type: 'link',
53
text: t('users.projects'),
54
href: userProjectsUrl,
55
+ process.env.UI_VERSION === 'sky' && {
+ type: 'link',
+ text: t('navigation.billing'),
+ href: billingUrl,
+ },
56
].filter(Boolean);
57
58
const navLinks: SideNavigationProps['items'] = [
0 commit comments