From 49d1cb06b2addeae008d5b707ec6a2562c28c434 Mon Sep 17 00:00:00 2001 From: Ilya Oleshko Date: Wed, 7 Aug 2024 13:33:34 +0300 Subject: [PATCH] Editor: Components: FilePassword: Fixed component name --- packages/doceditor/src/components/file-password/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/doceditor/src/components/file-password/index.tsx b/packages/doceditor/src/components/file-password/index.tsx index 275ed417f2..08b8ecadbf 100644 --- a/packages/doceditor/src/components/file-password/index.tsx +++ b/packages/doceditor/src/components/file-password/index.tsx @@ -54,7 +54,7 @@ import { ValidationStatus, WhiteLabelLogoType } from "@docspace/shared/enums"; import { validatePublicRoomPassword } from "@docspace/shared/api/rooms"; import Image from "next/image"; -const FilesPassword = ({ shareKey, title, entryTitle }: FilePasswordProps) => { +const FilePassword = ({ shareKey, title, entryTitle }: FilePasswordProps) => { const { t } = useTranslation(["Common"]); const theme = useTheme(); @@ -210,4 +210,4 @@ const FilesPassword = ({ shareKey, title, entryTitle }: FilePasswordProps) => { ); }; -export default FilesPassword; +export default FilePassword;