fix: move settings to end of line

This commit is contained in:
zkldi
2022-12-13 03:51:57 +00:00
parent a09cee65b1
commit 079d5e9f3a
+6 -5
View File
@@ -97,11 +97,6 @@ export function UserBottomNav({ baseUrl, reqUser }: { baseUrl: string; reqUser:
];
if (isRequestedUser) {
navItems.push(
<NavItem key="settings" to={`${baseUrl}/settings`}>
Profile Settings
</NavItem>
);
navItems.push(
<NavItem key="integrations" to={`${baseUrl}/integrations`}>
Service Integrations
@@ -123,6 +118,12 @@ export function UserBottomNav({ baseUrl, reqUser }: { baseUrl: string; reqUser:
</NavItem>
);
}
navItems.push(
<NavItem key="settings" to={`${baseUrl}/settings`}>
Profile Settings
</NavItem>
);
}
return (