From 1c25917093f4544e685e1fbdf668de7a8f45c6d2 Mon Sep 17 00:00:00 2001 From: Knee Cola Date: Tue, 18 Nov 2025 22:59:43 +0100 Subject: [PATCH] (fix) redirect home was not correct --- app/lib/actions/userSettingsActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/actions/userSettingsActions.ts b/app/lib/actions/userSettingsActions.ts index d123999..ebc5cbb 100644 --- a/app/lib/actions/userSettingsActions.ts +++ b/app/lib/actions/userSettingsActions.ts @@ -155,7 +155,7 @@ export const updateUserSettings = withUser(async (user: AuthenticatedUser, prevS // Get current locale and redirect to home with success message const locale = await getLocale(); - await gotoHomeWithMessage(locale, 'user-settings-saved-message'); + await gotoHomeWithMessage(locale, 'userSettingsSaved'); // This return is needed for TypeScript, but won't be reached due to redirect return {