From 76028319a24dd4409c7b47bde08f0a924e5c05c5 Mon Sep 17 00:00:00 2001 From: Utkersh Rajvenshi Date: Fri, 14 Nov 2025 01:34:57 +0530 Subject: [PATCH] fix: Updated translation key usage in change password error scenario --- .../(settings)/settings/account/security/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/account/security/page.tsx b/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/account/security/page.tsx index fad026ddaec..726e6e04b88 100644 --- a/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/account/security/page.tsx +++ b/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/account/security/page.tsx @@ -99,9 +99,9 @@ function SecurityPage() { setToast({ type: TOAST_TYPE.ERROR, - title: errorInfo?.title ?? t("auth.common.password.toast.error.title"), + title: errorInfo?.title ?? t("auth.common.password.toast.change_password.error.title"), message: - typeof errorInfo?.message === "string" ? errorInfo.message : t("auth.common.password.toast.error.message"), + typeof errorInfo?.message === "string" ? errorInfo.message : t("auth.common.password.toast.change_password.error.message"), }); } };