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 5, 2024
1 parent 7373e7b commit 724acbf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/front-end/src/app/achievements/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import MainContainer from "../../components/mainContainer";
import AuthChecker from "../../components/authChecker"
import React from 'react'

export default function AchivementsLayout({children} : React.ReactNode)
export default function AchivementsLayout({children} : {children: React.ReactNode})
{
return (
<AuthChecker>
Expand Down
10 changes: 5 additions & 5 deletions app/front-end/src/app/achievements/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ function AchivementsProgressBar() {
<>
<div className="col-12 d-flex">
<div
class={`${styles.progress} progress`}
className={`${styles.progress} progress`}
role="progressbar"
aria-label="Animated striped example"
aria-valuenow="75"
aria-valuemin="0"
aria-valuemax="100">
aria-valuenow={75}
aria-valuemin={0}
aria-valuemax={100}>
<div
class={`${styles.progress_bar} itim-font progress-bar`}>44%
className={`${styles.progress_bar} itim-font progress-bar`}>44%
</div>
</div>
<span className="valo-font ms-2 p-0">100%</span>
Expand Down

0 comments on commit 724acbf

Please sign in to comment.