Archie Sarre Wood

Results 326 comments of Archie Sarre Wood

Suspect this is impacting all users accessing Evidence from UTC+XX time zones.

For use in shadcn-svelte `sidebar.svelte` ```svelte import * as Sidebar from '$lib/ui/shadcn/components/ui/sidebar/index.js'; const { setOpenMobile } = Sidebar.useSidebar(); // in the sidebar setOpenMobile(false)}> setOpenMobile(false)}> ```

This appears to only happen on re-render, so suspect a problem with reactivity https://github.com/user-attachments/assets/260c5893-0811-43d6-93d8-4a87aed1ac9d

It's throwing from here: https://github.com/evidence-dev/evidence/blob/2e8e8f63cda234d52caba23ab91666b38415c2a4/sites/example-project/src/pages/%2Blayout.js#L144

@ItsMeBrianD and I did some investigation here and we suspect the browser is stripping the newline characters from the private key when you paste them in I suspect this is...

Same result, I assume openAI is not conforming to the expected output format

my suspicion is something like this: - when we initialize the dropdown, we loop through all the options, and do an operation that sets them as the default. - And...

Note, this pattern _may_ restrict any "remote parquet" solutions in the future, whereby users bring their own or point to parquet files which are not built by Evidence. This would...

Evidence is quite opinionated here, and does exact string replacememt I'd suggest using a replace function to replace all instances of ' with '' REPLACE('${inputs.thing.value}', '''', '''''') (which is admittedly...