From cca3d114adaf4981a0a9cd8e23a0806e1f052fd6 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Fri, 1 Apr 2022 17:55:46 -0700 Subject: [PATCH] fix: Clicking 'profile' option from account menu routes to blank screen --- app/routes/settings.tsx | 1 + app/utils/routeHelpers.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/routes/settings.tsx b/app/routes/settings.tsx index 4efa52b22..0c63a1781 100644 --- a/app/routes/settings.tsx +++ b/app/routes/settings.tsx @@ -19,6 +19,7 @@ export default function SettingsRoutes() { {/* old routes */} + ); } diff --git a/app/utils/routeHelpers.ts b/app/utils/routeHelpers.ts index e0daa3926..43d108fea 100644 --- a/app/utils/routeHelpers.ts +++ b/app/utils/routeHelpers.ts @@ -31,7 +31,7 @@ export function organizationSettingsPath(): string { } export function profileSettingsPath(): string { - return "/settings/profile"; + return "/settings"; } export function groupSettingsPath(): string {