J Rob Gant
J Rob Gant
Where is your `initializeApp` or otherwise setup of Angular Firebase? Show that code? https://stackoverflow.com/a/76592882
`"@angular/fire": "^7.6.1"` uses firebase v9. [Not v10](https://github.com/angular/angularfire#angular-and-firebase-versions). See also this [currently necessary override](https://github.com/FirebaseExtended/rxfire/issues/88#issuecomment-1715851191).
This is the problem and a solution that works for some: https://github.com/FirebaseExtended/rxfire/issues/88#issuecomment-1715851191
See: https://github.com/FirebaseExtended/rxfire/issues/88#issuecomment-1715851191
I don't think it is an npm vs pnpm issue. The core issue is that [email protected] introduced a breaking dependency change requiring firebase@10 instead of allowing both v9 & v10...
If you switch from the compat to modular then the types are correct for that version. For example: ```ts import { Injectable } from '@angular/core'; // eslint-disable-next-line @typescript-eslint/consistent-type-imports -- Functions...
Are you using incognito windows? The redirect only works if you allow third party access to storage, which isn't allowed in Chrome incognito windows. At least that was my case.
I just implemented this myself, and best I can tell it is working just fine. My advice would be to join the [Angular Community Discord](https://discord.gg/angular) and ask there. What I...
Think this is the issue: > DS#findAll queries are cached and keyed in the data store by JSON.stringify(params). So, by default, DS#findAll first checks to see if the query has...
I quick fix for the hasOne relation is to replace the 'id' with the relationship ID. ``` js var relationId = options.jsonApi.jsonApiPath; return childResourceDef.find(relationId, options).then(//... ```