From 70ea25cce2abc76d61835313c0f21fa354ebf431 Mon Sep 17 00:00:00 2001 From: Jason Chuang Date: Mon, 20 Apr 2026 01:44:58 +0800 Subject: [PATCH] fix MUI --- src/pages/authentication/auth-forms/BusCustomFormWizard.js | 4 ++-- src/pages/authentication/auth-forms/CustomFormWizard.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/authentication/auth-forms/BusCustomFormWizard.js b/src/pages/authentication/auth-forms/BusCustomFormWizard.js index 11279b1..5001874 100644 --- a/src/pages/authentication/auth-forms/BusCustomFormWizard.js +++ b/src/pages/authentication/auth-forms/BusCustomFormWizard.js @@ -1539,7 +1539,7 @@ const BusCustomFormWizard = (props) => { {/* */} - {fileList != null ? + {fileList != null && props.step === 0 ? : null} {/* @@ -1861,7 +1861,7 @@ const BusCustomFormWizard = (props) => { - {fileList != null ? + {fileList != null && props.step === 1 ? : null} diff --git a/src/pages/authentication/auth-forms/CustomFormWizard.js b/src/pages/authentication/auth-forms/CustomFormWizard.js index 99f18e3..46c53d8 100644 --- a/src/pages/authentication/auth-forms/CustomFormWizard.js +++ b/src/pages/authentication/auth-forms/CustomFormWizard.js @@ -1868,7 +1868,7 @@ const CustomFormWizard = (props) => { {/*如: 香港身份證; 護照; 中國內地身份證等*/} - {fileList != null ? + {fileList != null && props.step === 0 ? : null} {/* @@ -2197,7 +2197,7 @@ const CustomFormWizard = (props) => { - {fileList != null ? + {fileList != null && props.step === 1 ? : null}