From 31c0fd96ea2601097cdbef0183c4ce253fb7d2e3 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard <62331820+DanielHougaard@users.noreply.github.com> Date: Tue, 19 Mar 2024 13:39:34 +0100 Subject: [PATCH] Update UserInfoStep.tsx --- frontend/src/components/signup/UserInfoStep.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/components/signup/UserInfoStep.tsx b/frontend/src/components/signup/UserInfoStep.tsx index a7d11d10c4..c98998e354 100644 --- a/frontend/src/components/signup/UserInfoStep.tsx +++ b/frontend/src/components/signup/UserInfoStep.tsx @@ -196,10 +196,8 @@ export default function UserInfoStep({ const userOrgs = await fetchOrganizations(); - const orgSlug = userOrgs[0]?.slug; const orgId = userOrgs[0]?.id; const project = await ProjectService.initProject({ - organizationSlug: orgSlug, projectName: "Example Project" });