diff --git a/src/frontend/apps/desk/src/pages/teams/index.tsx b/src/frontend/apps/desk/src/pages/teams/index.tsx index 66f1c2a..ee5d394 100644 --- a/src/frontend/apps/desk/src/pages/teams/index.tsx +++ b/src/frontend/apps/desk/src/pages/teams/index.tsx @@ -3,6 +3,7 @@ import { useRouter as useNavigate } from 'next/navigation'; import React, { ReactElement } from 'react'; import { useTranslation } from 'react-i18next'; +import { Box, Text } from '@/components'; import { useAuthStore } from '@/core/auth'; import { useCunninghamTheme } from '@/cunningham'; import { TeamsListView } from '@/features/teams/team-management/components/TeamsListView'; @@ -27,41 +28,37 @@ const Page: NextPageWithLayout = () => { }; return ( -
-
+ -

{t('Teams')} -

+ -
-
+ { value={searchValue} onChange={handleInputChange} /> -
+ -
+ $css={` + background: ${colors['greyscale-200']}; + height: 32px; + width: 1px; + `} + > -
- -
+ {can_create ? (
)} -
-
+ + {!can_create && (

@@ -134,8 +126,8 @@ const Page: NextPageWithLayout = () => { )} -

- + + ); };