From 70121d31f96956ac46bd00d3d371a8e83cd393ac Mon Sep 17 00:00:00 2001 From: Vins Date: Mon, 9 Oct 2023 12:49:43 +0200 Subject: [PATCH] Rebuild --- src/front/Components/Layouts/ClientDashboard/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/front/Components/Layouts/ClientDashboard/index.tsx b/src/front/Components/Layouts/ClientDashboard/index.tsx index 5e1d82b6..1f7bce1e 100644 --- a/src/front/Components/Layouts/ClientDashboard/index.tsx +++ b/src/front/Components/Layouts/ClientDashboard/index.tsx @@ -19,6 +19,7 @@ export default function ClientDashboard(props: IProps) { const router = useRouter(); let { folderUid } = router.query; const [documents, setDocuments] = useState(null); + const [customer, setCustomer] = useState(null); const [folder, setFolder] = useState(null); const [isAddDocumentModalVisible, setIsAddDocumentModalVisible] = useState(false);