mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
* fix: leave project mutation (#5175) * [WEB-1982] chore: sidebar navigation item refactor (#5184) * chore: sidebar navigation item refactor * chore: module and cycle sidebar padding adjustment * chore: issue load more text color updated (#5174) * chore: add missing headings to the rich text editor (#5135) * [WEB-1255] chore: Required Spaces refactor (#5177) * Changes required to enable Publish Views * default views to not found page * refactor exports * remove uncessary view service * fix review comments --------- Co-authored-by: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Co-authored-by: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Co-authored-by: rahulramesha <71900764+rahulramesha@users.noreply.github.com> Co-authored-by: Satish Gandham <satish.iitg@gmail.com>
11 lines
332 B
TypeScript
11 lines
332 B
TypeScript
import { PageNotFound } from "@/components/ui/not-found";
|
|
import { PublishStore } from "@/store/publish/publish.store";
|
|
|
|
type Props = {
|
|
peekId: string | undefined;
|
|
publishSettings: PublishStore;
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export const ViewLayoutsRoot = (props: Props) => <PageNotFound />;
|