From 460ea8b95ab339d96a027d9829450eeec9da39be Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Wed, 6 Sep 2023 17:39:04 +0100 Subject: [PATCH] Fix icon on the team creation page --- src/components/CreateTeam/Step0.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/CreateTeam/Step0.tsx b/src/components/CreateTeam/Step0.tsx index 92ee43127..e9ebb4193 100644 --- a/src/components/CreateTeam/Step0.tsx +++ b/src/components/CreateTeam/Step0.tsx @@ -9,13 +9,13 @@ export const validTeamTypes = [ { value: 'company', label: 'Company', - icon: BuildingIcon, + icon: BuildingIcon.src, description: 'Track the skills and learning progress of the tech team at your company', }, { value: 'study_group', label: 'Study Group', - icon: UsersIcon, + icon: UsersIcon.src, description: 'Invite your friends or course-mates and track your learning progress together', }, ] as const;