fix: mutation of project detail, removed two identifier validation and added default value for deep checking
This commit is contained in:
parent
1368fb9164
commit
a1598e7310
19 changed files with 170 additions and 78 deletions
|
|
@ -3,6 +3,8 @@ import React, { useEffect, useState } from "react";
|
|||
import type { NextPage } from "next";
|
||||
// hooks
|
||||
import useUser from "lib/hooks/useUser";
|
||||
// hoc
|
||||
import withAuth from "lib/hoc/withAuthWrapper";
|
||||
// layouts
|
||||
import AdminLayout from "layouts/AdminLayout";
|
||||
// components
|
||||
|
|
@ -129,4 +131,4 @@ const Projects: NextPage = () => {
|
|||
);
|
||||
};
|
||||
|
||||
export default Projects;
|
||||
export default withAuth(Projects);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue