solid-meta icon indicating copy to clipboard operation
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

Open huseeiin opened this issue 1 year ago • 1 comments

reproduction:

export function App() {
	return (
		<MetaProvider>
			<Title>{[].length} items</Title>
		</MetaProvider>
	);
}

const html = await renderToStringAsync(() => <App />);

const head = getAssets();

huseeiin avatar Mar 20 '24 08:03 huseeiin

duplicate of #37

indeyets avatar Mar 22 '24 16:03 indeyets