diff --git a/frontend/src/core/components/tools/shared/FileStatusIndicator.tsx b/frontend/src/core/components/tools/shared/FileStatusIndicator.tsx index aed2c5d6e..0c39da957 100644 --- a/frontend/src/core/components/tools/shared/FileStatusIndicator.tsx +++ b/frontend/src/core/components/tools/shared/FileStatusIndicator.tsx @@ -7,6 +7,7 @@ import { useFilesModalContext } from "@app/contexts/FilesModalContext"; import { useAllFiles } from "@app/contexts/FileContext"; import { useFileManager } from "@app/hooks/useFileManager"; import { StirlingFile } from "@app/types/fileContext"; +import { PrivateContent } from "@app/components/shared/PrivateContent" export interface FileStatusIndicatorProps { selectedFiles?: StirlingFile[]; @@ -134,7 +135,9 @@ const FileStatusIndicator = ({ return ( - ✓ {selectedFiles.length === 1 ? t("fileSelected", "Selected: {{filename}}", { filename: selectedFiles[0]?.name }) : t("filesSelected", "{{count}} files selected", { count: selectedFiles.length })} + ✓ {selectedFiles.length === 1 + ? {t("fileSelected", "Selected: {{filename}}", { filename: selectedFiles[0]?.name }) } + : t("filesSelected", "{{count}} files selected", { count: selectedFiles.length })} ); };