solid-meta
solid-meta copied to clipboard
doing `<Title>{[].length} items</Title>` in SSR results in "0, items" while in CSR it results in "0 items" as it should
reproduction:
export function App() {
return (
<MetaProvider>
<Title>{[].length} items</Title>
</MetaProvider>
);
}
const html = await renderToStringAsync(() => <App />);
const head = getAssets();
duplicate of #37