Skip to content

Commit

Permalink
fix: extra ';' inside the html content
Browse files Browse the repository at this point in the history
  • Loading branch information
joonatank committed Apr 25, 2024
1 parent 9ca473e commit a34c795
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function ApplicationRound({
return (
<>
<BreadcrumbWrapper route={route} />
<Review applicationRound={applicationRound} />;
<Review applicationRound={applicationRound} />
</>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ type ReviewProps = {
applicationRound: ApplicationRoundNode;
};

export function Review({ applicationRound }: ReviewProps): JSX.Element | null {
export function Review({ applicationRound }: ReviewProps): JSX.Element {
const { t } = useTranslation();

const [searchParams, setParams] = useSearchParams();
Expand Down

0 comments on commit a34c795

Please sign in to comment.