From 7b73cf4f54b999de3095e2dd383f75bbb235c6ba Mon Sep 17 00:00:00 2001 From: Pasichnichenkoilya Date: Tue, 30 Jul 2024 14:19:49 +0300 Subject: [PATCH] Fix doneItems type --- .../user-profile/profile-info/ProfileContainerDesktop.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/user-profile/profile-info/ProfileContainerDesktop.tsx b/src/containers/user-profile/profile-info/ProfileContainerDesktop.tsx index d74f35be5..f87d73882 100644 --- a/src/containers/user-profile/profile-info/ProfileContainerDesktop.tsx +++ b/src/containers/user-profile/profile-info/ProfileContainerDesktop.tsx @@ -17,7 +17,7 @@ interface ProfileContainerDesktopProps { accInfo: ReactNode buttonGroup: ReactNode defaultQuantity: number - doneItems: { title: string; description: string } + doneItems: { title: string; description: string }[] userData: UserResponse chipItems: string[] }