Skip to content

setPersistence in AngularFire _BrowserLocalPersistence cannot be invoked without 'new'` #3550

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
omtagline opened this issue Jun 20, 2024 · 3 comments

Comments

@omtagline
Copy link

omtagline commented Jun 20, 2024

Problem
The setPersistence method does not work when imported from @angular/fire/auth, leading to a TypeError. However, it works when imported from firebase/auth.

Error
When using the import from @angular/fire/auth, the following error is encountered:

ERROR TypeError: Class constructor _BrowserLocalPersistence cannot be invoked without 'new'
Code Example

  • Non-functional:
    import { setPersistence, browserLocalPersistence } from '@angular/fire/auth';
    await setPersistence(this.auth, browserLocalPersistence);

  • Functional:
    import { setPersistence, browserLocalPersistence } from 'firebase/auth';
    await setPersistence(this.auth, browserLocalPersistence);

@google-oss-bot
Copy link

This issue does not seem to follow the issue template. Make sure you provide all the required information.

@omtagline omtagline changed the title Issue Report: setPersistence in AngularFire setPersistence in AngularFire _BrowserLocalPersistence cannot be invoked without 'new'` Jun 20, 2024
@Steve-from-Memphis
Copy link

Ran into the same issue and am following the same work around as described in this ticket.

BTW, here is the stackoverflow.com question from 3 years ago with the exact same problem and work around: https://stackoverflow.com/questions/69292778/angularfire-auth-persistence-cannot-be-invoked-without-new

@rgant
Copy link

rgant commented Jan 28, 2025

Trying to write tests with the Firebase Emulator it seems that sign in can persist across tests. I hoped that setting setPersistence(auth, inMemoryPersistence) would help, but it does not seem to.

However I still experienced the issue mentioned above and the work around still at least executed the test suite.

Same issue as #3131

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants