From 8702af671d781e874359db98b09a3f4b3f6b3102 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard <62331820+DanielHougaard@users.noreply.github.com> Date: Tue, 19 Mar 2024 13:45:57 +0100 Subject: [PATCH] Fix: Typings error --- .../views/Signup/components/UserInfoSSOStep/UserInfoSSOStep.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/views/Signup/components/UserInfoSSOStep/UserInfoSSOStep.tsx b/frontend/src/views/Signup/components/UserInfoSSOStep/UserInfoSSOStep.tsx index c2ad81efe..1cef143d5 100644 --- a/frontend/src/views/Signup/components/UserInfoSSOStep/UserInfoSSOStep.tsx +++ b/frontend/src/views/Signup/components/UserInfoSSOStep/UserInfoSSOStep.tsx @@ -189,14 +189,12 @@ export const UserInfoSSOStep = ({ const userOrgs = await fetchOrganizations(); const orgId = userOrgs[0]?.id; - const orgSlug = userOrgs[0]?.slug; await selectOrganization({ organizationId: orgId }); const project = await ProjectService.initProject({ - organizationSlug: orgSlug, projectName: "Example Project" });