mileung
mileung
SSolidJS
Created by mileung on 12/19/2024 in #support
What does it mean when a tags don't navigate to their href?
Adding Link meta tags also causes routing to stop working
7 replies
SSolidJS
Created by mileung on 12/19/2024 in #support
What does it mean when a tags don't navigate to their href?
I think I solved the problem, The component with said problematic line was put
<Router
root={(props) => (
<MetaProvider>
<Suspense>
/* HERE */
<div class="flex-1">{props.children}</div>
<Footer />
</Suspense>
</MetaProvider>
)}
>
<Router
root={(props) => (
<MetaProvider>
<Suspense>
/* HERE */
<div class="flex-1">{props.children}</div>
<Footer />
</Suspense>
</MetaProvider>
)}
>
I moved it inside to a child component and the issue seems to be resolved. Is this expected behavior? Was I doing something wrong at first?
7 replies
SSolidJS
Created by mileung on 12/19/2024 in #support
What does it mean when a tags don't navigate to their href?
let i18n = createAsync(() => getI18nDict(lang())); is what I'm trying to have, but seems just having a promise is enough to cause the issue
7 replies
SSolidJS
Created by mileung on 12/19/2024 in #support
What does it mean when a tags don't navigate to their href?
I tried both tags, and get the same problem. Not afk, just coding like usual. It seems the problem comes from this line:
let i18n = createAsync(() => new Promise((res) => res({ test: 'Test' })));
let i18n = createAsync(() => new Promise((res) => res({ test: 'Test' })));
where () => new Promise((res) => res({ test: 'Test' })) is supposed to be a server function that gets a language dict, but I replaced it with a promise for testing.
7 replies