From e0865ea3e5e742c3a686fad09af17902ae6d48fd Mon Sep 17 00:00:00 2001 From: Emnaghz Date: Thu, 20 Feb 2025 14:08:44 +0100 Subject: [PATCH] fix: add requested changes --- api/src/cms/controllers/content.controller.spec.ts | 8 +++----- frontend/src/components/contents/index.tsx | 10 +++++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/api/src/cms/controllers/content.controller.spec.ts b/api/src/cms/controllers/content.controller.spec.ts index eebdbd94..b2fc47a5 100644 --- a/api/src/cms/controllers/content.controller.spec.ts +++ b/api/src/cms/controllers/content.controller.spec.ts @@ -256,8 +256,8 @@ describe('ContentController', () => { image: 'image.jpg', }, id: '', - createdAt: null as unknown as Date, - updatedAt: null as unknown as Date, + createdAt: new Date(), + updatedAt: new Date(), }, ]); @@ -267,7 +267,7 @@ describe('ContentController', () => { mockContentType.id, mockContentType, ); - expect(result).toEqual([ + expect(result).toEqualPayload([ { entity: mockContentType.id, title: 'store 3', @@ -276,8 +276,6 @@ describe('ContentController', () => { image: 'image.jpg', }, id: '', - createdAt: null as unknown as Date, - updatedAt: null as unknown as Date, }, ]); }); diff --git a/frontend/src/components/contents/index.tsx b/frontend/src/components/contents/index.tsx index a94e7bc0..9cac3d65 100644 --- a/frontend/src/components/contents/index.tsx +++ b/frontend/src/components/contents/index.tsx @@ -100,7 +100,7 @@ export const Contents = () => { const { data: contentType } = useGet(String(query.id), { entity: EntityType.CONTENT_TYPE, }); - const { mutateAsync: importDataset, isLoading } = useImport( + const { mutate: importDataset, isLoading } = useImport( EntityType.CONTENT, { onError: () => { @@ -125,11 +125,11 @@ export const Contents = () => { }, { idTargetContentType: contentType?.id } ); - const handleImportChange = async (file: File) => { - await importDataset(file); + const handleImportChange = (file: File) => { + importDataset(file); }; - - return ( + +return (