From 708397361cf4864abd248a668ab10f9080a923df Mon Sep 17 00:00:00 2001 From: Charles Zhao Date: Mon, 22 Jul 2024 17:53:56 +0800 Subject: [PATCH 1/2] fix(console): add cloud guard to bring your ui form field --- .../PageContent/Branding/CustomUiForm/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/console/src/pages/SignInExperience/PageContent/Branding/CustomUiForm/index.tsx b/packages/console/src/pages/SignInExperience/PageContent/Branding/CustomUiForm/index.tsx index 68185ef5e..961c40bbf 100644 --- a/packages/console/src/pages/SignInExperience/PageContent/Branding/CustomUiForm/index.tsx +++ b/packages/console/src/pages/SignInExperience/PageContent/Branding/CustomUiForm/index.tsx @@ -5,7 +5,7 @@ import { Trans, useTranslation } from 'react-i18next'; import CustomUiAssetsUploader from '@/components/CustomUiAssetsUploader'; import InlineUpsell from '@/components/InlineUpsell'; -import { isDevFeaturesEnabled } from '@/consts/env'; +import { isDevFeaturesEnabled, isCloud } from '@/consts/env'; import { SubscriptionDataContext } from '@/contexts/SubscriptionDataProvider'; import Card from '@/ds-components/Card'; import CodeEditor from '@/ds-components/CodeEditor'; @@ -67,7 +67,7 @@ function CustomUiForm() { )} /> - {isDevFeaturesEnabled && ( + {isDevFeaturesEnabled && isCloud && ( Date: Mon, 22 Jul 2024 17:54:39 +0800 Subject: [PATCH 2/2] refactor(schemas): increase max upload file size limit to 20MB --- packages/schemas/src/types/user-assets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/schemas/src/types/user-assets.ts b/packages/schemas/src/types/user-assets.ts index 95aa2d530..dbd83849e 100644 --- a/packages/schemas/src/types/user-assets.ts +++ b/packages/schemas/src/types/user-assets.ts @@ -1,6 +1,6 @@ import { z } from 'zod'; -export const maxUploadFileSize = 10 * 1024 * 1024; // 10 MB +export const maxUploadFileSize = 20 * 1024 * 1024; // 20 MB // Reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types export const allowUploadMimeTypes = [