From 8b393611d6ccce4c60bf5daddaf9a07902f69449 Mon Sep 17 00:00:00 2001 From: Robin Date: Wed, 29 Nov 2023 12:59:07 -0500 Subject: [PATCH] Fix the settings label 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) {