From bbe1043289eae4f1a46cc6619f3e3a04b14a6733 Mon Sep 17 00:00:00 2001 From: Robin Date: Wed, 29 Nov 2023 13:01:45 -0500 Subject: [PATCH] Fix the settings label (#1936) We were displaying the raw translation key rather than the translated text. --- src/UserMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UserMenu.tsx b/src/UserMenu.tsx index c703d933..7cab4575 100644 --- a/src/UserMenu.tsx +++ b/src/UserMenu.tsx @@ -66,7 +66,7 @@ export const UserMenu: FC = ({ arr.push({ key: "settings", icon: SettingsIcon, - label: "common.settings", + label: t("common.settings"), }); if (isPasswordlessUser && !preventNavigation) {