Jeff Delaney

Results 33 comments of Jeff Delaney

Check your node version. Make sure it's 14+

That's a good point. I just pushed a fix that looks like this, but if you have a better solution I would be happy to merge it. ``` const dropdownRef...

That would make a good addition, if you want to PR the change I will merge it.

It uses Svelte's ContextAPI to manage projects. The children will use the parent project. This should work, but let me know if you run into any issues: ``` const defaultApp...

Documents should not add an `id` field to the data. Are you sure this is the case? Also, what do you mean by "title of the document"? Collections do add...

Gotcha, that's what I thought. I'm thinking about adding an option like this to prevent name collisions: ``` ``` That way you can change the field name, or omit it...

That's a good point. I think the next version should remove default values for id and ref.

Overall this looks great! One question though: `SignedOut` should render on `undefined` and `null` because otherwise it won't work with SSR by default, right? This component should always render with...

Thank you for the input @hcavalieri 👍 I see what you mean about exposing the snapshot on the store, and it would be nice to have an event for that...

The next release will have better support for TypeScript, but currently you can solve this issue by creating a file named `main.d.ts` with this line: ``` declare module 'sveltefire'; ```