From aad5a59e82047a125d4127158b125328cfa7d568 Mon Sep 17 00:00:00 2001 From: Dhruwang Jariwala <67850763+Dhruwang@users.noreply.github.com> Date: Fri, 2 May 2025 11:35:23 +0530 Subject: [PATCH] fix: removed dynamic translation key (#5527) Co-authored-by: pandeymangg --- .../components/data-table/components/selected-row-settings.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/modules/ui/components/data-table/components/selected-row-settings.tsx b/apps/web/modules/ui/components/data-table/components/selected-row-settings.tsx index cd659514b0..5e6eaae999 100644 --- a/apps/web/modules/ui/components/data-table/components/selected-row-settings.tsx +++ b/apps/web/modules/ui/components/data-table/components/selected-row-settings.tsx @@ -77,7 +77,8 @@ export const SelectedRowSettings = ({ return (
- {selectedRowCount} {t(`common.${type}`)}s {t("common.selected")} + {selectedRowCount} {type === "response" ? t("common.responses") : t("common.contacts")} + {t("common.selected")}
handleToggleAllRowsSelection(true)} />