Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit a34c795

Browse files
committed
fix: extra ';' inside the html content
1 parent 9ca473e commit a34c795

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/admin-ui/src/spa/recurring-reservations/application-rounds/[id]/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function ApplicationRound({
5757
return (
5858
<>
5959
<BreadcrumbWrapper route={route} />
60-
<Review applicationRound={applicationRound} />;
60+
<Review applicationRound={applicationRound} />
6161
</>
6262
);
6363
}

apps/admin-ui/src/spa/recurring-reservations/application-rounds/[id]/review/Review.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ type ReviewProps = {
7373
applicationRound: ApplicationRoundNode;
7474
};
7575

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

7979
const [searchParams, setParams] = useSearchParams();

0 commit comments

Comments
 (0)