From f8b5ff5ceca1745bbdb680a4899532bee8bdd967 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Wed, 18 Sep 2024 13:57:11 +0545 Subject: [PATCH] fix project create as developer --- src/routes/(console)/organization-[organization]/+page.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/(console)/organization-[organization]/+page.svelte b/src/routes/(console)/organization-[organization]/+page.svelte index f5ea4f665..89e83a508 100644 --- a/src/routes/(console)/organization-[organization]/+page.svelte +++ b/src/routes/(console)/organization-[organization]/+page.svelte @@ -80,6 +80,7 @@ } function handleCreateProject() { + if(!$canWriteProjects) return; if (isCloud) wizard.start(Create); else showCreate = true; }