summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pages/[locale]/furthsettins/scotsoun/[scotsounId]/payment-success-confirmation.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/[locale]/furthsettins/scotsoun/[scotsounId]/payment-success-confirmation.astro b/src/pages/[locale]/furthsettins/scotsoun/[scotsounId]/payment-success-confirmation.astro
index fe82cf7..49f1bf7 100644
--- a/src/pages/[locale]/furthsettins/scotsoun/[scotsounId]/payment-success-confirmation.astro
+++ b/src/pages/[locale]/furthsettins/scotsoun/[scotsounId]/payment-success-confirmation.astro
@@ -10,7 +10,7 @@ import type ScotsounId from '$types/ScotsounId';
export async function getStaticPaths() {
const scotsounIds = Object.keys(getScotsoun) as `${ScotsounId}`[];
return scotsounIds.flatMap((n) =>
- localeStaticPaths.map((p) => ({ ...p, params: { ...p.params, issueNumber: n } }))
+ localeStaticPaths.map((p) => ({ ...p, params: { ...p.params, scotsounId: n } }))
);
}