From a7033079a747675af27df554b89cdf39254ebf60 Mon Sep 17 00:00:00 2001 From: Gabriel Majeri Date: Fri, 24 Jan 2025 11:44:48 +0200 Subject: [PATCH] Fix formatting --- src/app/[locale]/accommodation-tax/page.tsx | 4 +--- src/app/[locale]/admission-tax/[studyCycle]/page.tsx | 5 +---- src/app/[locale]/tuition-tax/[studyCycle]/page.tsx | 5 +---- 3 files changed, 3 insertions(+), 11 deletions(-) diff --git a/src/app/[locale]/accommodation-tax/page.tsx b/src/app/[locale]/accommodation-tax/page.tsx index 7e40e36..e8bb3f8 100644 --- a/src/app/[locale]/accommodation-tax/page.tsx +++ b/src/app/[locale]/accommodation-tax/page.tsx @@ -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); diff --git a/src/app/[locale]/admission-tax/[studyCycle]/page.tsx b/src/app/[locale]/admission-tax/[studyCycle]/page.tsx index d8dee59..1eba22a 100644 --- a/src/app/[locale]/admission-tax/[studyCycle]/page.tsx +++ b/src/app/[locale]/admission-tax/[studyCycle]/page.tsx @@ -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); diff --git a/src/app/[locale]/tuition-tax/[studyCycle]/page.tsx b/src/app/[locale]/tuition-tax/[studyCycle]/page.tsx index 2653800..66cbf3c 100644 --- a/src/app/[locale]/tuition-tax/[studyCycle]/page.tsx +++ b/src/app/[locale]/tuition-tax/[studyCycle]/page.tsx @@ -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);