mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-28 01:48:11 +03:00
fix: move settings to end of line
This commit is contained in:
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user