From 5dd0d6565c1ab4ddde34dc6cdbf0f66090db5b4f Mon Sep 17 00:00:00 2001 From: sjaanus Date: Thu, 26 Sep 2024 15:05:26 +0300 Subject: [PATCH] Fix --- .../onboarding/flow/ProjectOnboarded.tsx | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/frontend/src/component/onboarding/flow/ProjectOnboarded.tsx b/frontend/src/component/onboarding/flow/ProjectOnboarded.tsx index 000544c9ddad..bdc811c3a94c 100644 --- a/frontend/src/component/onboarding/flow/ProjectOnboarded.tsx +++ b/frontend/src/component/onboarding/flow/ProjectOnboarded.tsx @@ -51,28 +51,6 @@ const TitleContainer = styled('div')(({ theme }) => ({ fontWeight: 'bold', })); -const NeutralCircleContainer = styled('span')(({ theme }) => ({ - width: '28px', - height: '28px', - display: 'flex', - alignItems: 'center', - justifyContent: 'center', - backgroundColor: theme.palette.neutral.border, - borderRadius: '50%', -})); - -const MainCircleContainer = styled(NeutralCircleContainer)(({ theme }) => ({ - backgroundColor: theme.palette.primary.main, - color: theme.palette.background.paper, -})); - -const ExistingFlagContainer = styled('div')(({ theme }) => ({ - display: 'flex', - flexDirection: 'column', - gap: theme.spacing(3), - height: '100%', -})); - const Title = styled('div')(({ theme }) => ({ display: 'flex', flexDirection: 'column',