fix: Email link sign-in by demolaf · Pull Request #2263 · firebase/FirebaseUI-Android

@demolaf

Lyokone

class InvalidEmailLinkException(
cause: Throwable? = null
) : AuthException("You are are attempting to sign in with an invalid email link", cause)
) : AuthException("", cause)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we removing the text reason for everything in this file?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't want to duplicate what already existed in the stringProvider and since ErrorRecoveryDialog handled it, I could put them back too.

@demolaf