From bfc6767c0248137a7eb9c986d3b77a4dcf85d474 Mon Sep 17 00:00:00 2001 From: Elyor Djalilov Date: Mon, 26 Feb 2024 20:24:30 +0500 Subject: [PATCH] renamed form gallery error image --- packages/client/src/pages/FormGallery/ErrorView/index.js | 6 +++--- public/images/{form-gallery-error.svg => error500.svg} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename public/images/{form-gallery-error.svg => error500.svg} (100%) diff --git a/packages/client/src/pages/FormGallery/ErrorView/index.js b/packages/client/src/pages/FormGallery/ErrorView/index.js index cd355ea3f4..2cdc816739 100644 --- a/packages/client/src/pages/FormGallery/ErrorView/index.js +++ b/packages/client/src/pages/FormGallery/ErrorView/index.js @@ -1,6 +1,6 @@ import { Button } from "@docspace/shared/components/button"; import * as Styled from "./index.styled"; -import ErrorImageSvgUrl from "PUBLIC_DIR/images/form-gallery-error.svg?url"; +import ErrorImageSvgUrl from "PUBLIC_DIR/images/error500.svg?url"; import { isMobile as isMobileUtils } from "@docspace/shared/utils"; import { inject, observer } from "mobx-react"; import { withTranslation } from "react-i18next"; @@ -34,8 +34,8 @@ const ErrorView = ({ combineUrl( window.DocSpaceConfig?.proxy?.url, config.homepage, - `${url}?${filterParamsStr}` - ) + `${url}?${filterParamsStr}`, + ), ); }; diff --git a/public/images/form-gallery-error.svg b/public/images/error500.svg similarity index 100% rename from public/images/form-gallery-error.svg rename to public/images/error500.svg