Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielMajeri committed Jan 24, 2025
1 parent 5627f37 commit a703307
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
4 changes: 1 addition & 3 deletions src/app/[locale]/accommodation-tax/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ interface Props {
export default async function AccommodationTaxPage(props: Props) {
const params = await props.params;

const {
locale
} = params;
const { locale } = params;

unstable_noStore();
unstable_setRequestLocale(locale);
Expand Down
5 changes: 1 addition & 4 deletions src/app/[locale]/admission-tax/[studyCycle]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@ interface Props {
export default async function AdmissionTaxPage(props: Props) {
const params = await props.params;

const {
locale,
studyCycle
} = params;
const { locale, studyCycle } = params;

unstable_noStore();
unstable_setRequestLocale(locale);
Expand Down
5 changes: 1 addition & 4 deletions src/app/[locale]/tuition-tax/[studyCycle]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@ interface Props {
export default async function TuitionTaxPage(props: Props) {
const params = await props.params;

const {
locale,
studyCycle
} = params;
const { locale, studyCycle } = params;

unstable_noStore();
unstable_setRequestLocale(locale);
Expand Down

0 comments on commit a703307

Please sign in to comment.