✨ Fixing build
This commit is contained in:
parent
d01984dd48
commit
6eae754bc8
@ -10,11 +10,11 @@ import { useRouter } from "next/router";
|
|||||||
import DefaultDashboardWithList, { IPropsDashboardWithList } from "../DefaultDashboardWithList";
|
import DefaultDashboardWithList, { IPropsDashboardWithList } from "../DefaultDashboardWithList";
|
||||||
|
|
||||||
type IProps = IPropsDashboardWithList & {
|
type IProps = IPropsDashboardWithList & {
|
||||||
isArchived: boolean;
|
isArchived?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function DefaultNotaryDashboard(props: IProps) {
|
export default function DefaultNotaryDashboard(props: IProps) {
|
||||||
const { isArchived } = props;
|
const { isArchived = false } = props;
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const [folders, setFolders] = React.useState<OfficeFolder[]>([]);
|
const [folders, setFolders] = React.useState<OfficeFolder[]>([]);
|
||||||
const { folderUid } = router.query;
|
const { folderUid } = router.query;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user