Skip to content

Commit

Permalink
[FIX] removes build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Mushigarou committed May 6, 2024
1 parent 5389c12 commit f47c62e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/front-end/src/app/achievements/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function RenderBadges({ content } : { content: { title: string; subTitle: str

function Achievements() {

const [achievements, setAchievements] = useState<Record<string, number>>({});
const [achievements, setAchievements] = useState<Record<string, boolean>>({});
const access = Cookies.get('access');

useEffect(() => {
Expand Down Expand Up @@ -150,7 +150,7 @@ function Achievements() {
);
}

export default function() {
function AchievementsPage() {
return (
<div className={`${styles.wrapper} container-fluid vh-100`}>
<div className="row p-0 m-0 mt-5">
Expand All @@ -171,4 +171,6 @@ export default function() {
</div>
</div>
);
}
}

export default AchievementsPage;

0 comments on commit f47c62e

Please sign in to comment.