Просмотр исходного кода

imprv/115673-128224createpresentationfile 13

Meiri Kikuta 2 лет назад
Родитель
Сommit
9e9e53710d

+ 4 - 2
apps/app/src/components/Admin/Customize/CustomizePresentationSetting.tsx

@@ -8,6 +8,9 @@ import { toastSuccess, toastError } from '~/client/util/toastr';
 import AdminUpdateButtonRow from '../Common/AdminUpdateButtonRow';
 import { StatsEvent } from '@aws-sdk/client-s3';
 
+type Props = {
+  adminCustomizeContainer: AdminCustomizeContainer
+}
 
 export const CustomizePresentationSetting = (): JSX.Element => {
 
@@ -42,7 +45,6 @@ export const CustomizePresentationSetting = (): JSX.Element => {
       </div>
 
       <AdminUpdateButtonRow onClick={onClickSubmit} disabled={AdminCustomizeContainer.state.retrieveError != null} />
-
     </React.Fragment>
-  );
+  )
 };