fix: Clicking 'profile' option from account menu routes to blank screen

This commit is contained in:
Tom Moor
2022-04-01 17:55:46 -07:00
parent f48c86c56d
commit cca3d114ad
2 changed files with 2 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ export default function SettingsRoutes() {
{/* old routes */}
<Redirect from="/settings/import-export" to="/settings/export" />
<Redirect from="/settings/people" to="/settings/members" />
<Redirect from="/settings/profile" to="/settings" />
</Switch>
);
}

View File

@@ -31,7 +31,7 @@ export function organizationSettingsPath(): string {
}
export function profileSettingsPath(): string {
return "/settings/profile";
return "/settings";
}
export function groupSettingsPath(): string {