Patric Steiner

Results 8 comments of Patric Steiner

@pkozlowski-opensource Thanks for the reply. Unfortunately I'm not sure how this helps, consider the following scenario: To use firebase I need to call `provideFirebaseApp(() => initializeApp(firebaseConfig))` inside of the imports...

since the new version 7 you need to import from firebase/compat: `import { auth } from 'firebase/compat/app';`

Is this issue rly fixed? It still happens to me... Without `identify()`, everything works as expected, 1 call to /decide and good. But whenever `identify()` is called, another call to...

@neilkakkar Oh, I didn't know that, thank you very much :) ...But the problem is when the user is logged in, _then_ I immediately call identify, but i first need...

Putting this here, so people googling why their **firebase deployment pipeline on github actions suddenly fails** will hopefully find it. ``` Error: Deploy target admin not configured for project xxx....

Same problem here. We use a relative url `/api/v1/some-resource` on the client to "hide" the absolute backend url. Firebase hosting, which hosts the client, is then configured to redirect all...

This is quite annoying... Catching all node errors globally seems not to be the right solution, as discussed in https://github.com/angular/angular-cli/pull/28405#discussion_r1791871459. Is there no recommended approach on how to handle these...

> Returning EMPTY or catching error project-wide will break rxResource. It’s better to move all your GET requests to rxResource and remove your project-wide error interceptor That would work I...