From 90b5027931748b96077674ed2cf423d5c2416690 Mon Sep 17 00:00:00 2001 From: Ani Simhadri Date: Thu, 18 Aug 2022 17:36:57 -0400 Subject: [PATCH] fix badges --- client/src/components/Badges.jsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/client/src/components/Badges.jsx b/client/src/components/Badges.jsx index 91aae1b..8734a95 100644 --- a/client/src/components/Badges.jsx +++ b/client/src/components/Badges.jsx @@ -1,6 +1,5 @@ import WorkspacePremiumIcon from '@mui/icons-material/WorkspacePremium'; import { Grid, Tooltip, Typography } from '@mui/material'; -import { Stack } from '@material-ui/core'; function Badge({ title = 'Good Question', @@ -32,20 +31,16 @@ export default function Badges({ badges: { obtained, unobtained } }) { return ( <> - Obtained Badges {badgesGrid(obtained)} - - Unobtained Badges {badgesGrid(unobtained)} - );