style: issue details, list view, kanban card

This commit is contained in:
Aaryan Khandelwal 2022-12-08 04:57:10 +05:30
parent 1368fb9164
commit b1aa389930
32 changed files with 935 additions and 1326 deletions

View file

@ -10,7 +10,7 @@ import useUser from "lib/hooks/useUser";
// hoc
import withAuthWrapper from "lib/hoc/withAuthWrapper";
// layouts
import AdminLayout from "layouts/AdminLayout";
import AppLayout from "layouts/AppLayout";
// ui
import { Button } from "ui";
// swr
@ -52,7 +52,7 @@ const MyWorkspacesInvites: NextPage = () => {
};
return (
<AdminLayout
<AppLayout
meta={{
title: "Plane - My Workspace Invites",
}}
@ -147,7 +147,7 @@ const MyWorkspacesInvites: NextPage = () => {
)}
</div>
</div>
</AdminLayout>
</AppLayout>
);
};