From 5c570d3fd80b14a5c24c22848284271a3ad38e3b Mon Sep 17 00:00:00 2001 From: Luis Felipe Risch <lfr20@inf.ufpr.br> Date: Thu, 1 Apr 2021 11:40:00 -0300 Subject: [PATCH] Removed unecessary imports --- src/Admin/Components/Components/DataCards/AchievementsCard.js | 4 +--- src/Admin/Components/Components/DataCards/GameficationCard.js | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Admin/Components/Components/DataCards/AchievementsCard.js b/src/Admin/Components/Components/DataCards/AchievementsCard.js index 3babb97d..e0bc0efc 100644 --- a/src/Admin/Components/Components/DataCards/AchievementsCard.js +++ b/src/Admin/Components/Components/DataCards/AchievementsCard.js @@ -41,8 +41,6 @@ import { import Paper from "@material-ui/core/Paper"; import styled from 'styled-components' import { GiAchievement } from 'react-icons/gi' -import ItemStoreContainer from "../../../../Pages/ItemStore"; - const AchievementCard = ({ match }) => { let history = useHistory(); @@ -342,7 +340,7 @@ const AchievementCard = ({ match }) => { <Grid item> <Link style={{ textDecoration: "none" }} - to={`/admin/gamefication`} + to={`/admin/achievements`} > <Button startIcon={<ListRoundedIcon />} diff --git a/src/Admin/Components/Components/DataCards/GameficationCard.js b/src/Admin/Components/Components/DataCards/GameficationCard.js index 5fcff0c5..bf8bca51 100644 --- a/src/Admin/Components/Components/DataCards/GameficationCard.js +++ b/src/Admin/Components/Components/DataCards/GameficationCard.js @@ -514,7 +514,7 @@ const CollectionCard = ({ match }) => { <Grid item> <Typography color="initial" className={classes.subTitle}> Descrição - </Typography> + </Typography> <Typography color="textSecondary"> {item.description} </Typography> -- GitLab