I see a type error in this example code on https://svelteplot.dev/why-svelteplot ```html <RuleY data={[0]} /> ``` because it assumes `DataRecord[]`. https://github.com/svelteplot/svelteplot/blob/074d66ffe11b3af39d81c59c4f2c7e72f17eb605/src/lib/marks/RuleY.svelte#L16 In some components, `data` is `DataRow[]`. Probably, this should be used in general? https://github.com/svelteplot/svelteplot/blob/074d66ffe11b3af39d81c59c4f2c7e72f17eb605/src/lib/marks/BarX.svelte#L16
I see a type error in this example code on https://svelteplot.dev/why-svelteplot
because it assumes
DataRecord[].svelteplot/src/lib/marks/RuleY.svelte
Line 16 in 074d66f
In some components,
dataisDataRow[]. Probably, this should be used in general?svelteplot/src/lib/marks/BarX.svelte
Line 16 in 074d66f