fix: parallell routes needs a page.tsx in root not just in catchAll route

This commit is contained in:
Simon Emanuelsson
2024-04-16 12:42:44 +02:00
parent 349afd4100
commit 3aeaee64fb
9 changed files with 30 additions and 7 deletions

View File

@@ -91,9 +91,10 @@ export default function CountrySelect({
*/
UNSTABLE_portalContainer={divElement ?? undefined}
>
<ListBox>
<ListBox aria-label="Country of residence">
{countries.map((country, idx) => (
<ListBoxItem
aria-label={country.name}
className={styles.listBoxItem}
id={country.name}
key={`${country.code}-${idx}`}