commit
d2f9958ca3
|
@ -9,7 +9,7 @@ RNFirebase handles authentication for us out of the box, both with email/passwor
|
|||
### Properties
|
||||
|
||||
##### `authenticated: boolean` - Returns the current Firebase authentication state.
|
||||
##### `currentUser: User | null` - Returns the currently signed-in user (or null). See the [User](/docs/api/authentication.md#user) class documentation for further usage.
|
||||
##### `currentUser: User | null` - Returns the currently signed-in user (or null). See the [User](/modules/authentication.md#user) class documentation for further usage.
|
||||
|
||||
### Methods
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ export default class Crash {
|
|||
* @param maxStackSize
|
||||
*/
|
||||
report(error: FirebaseError, maxStackSize: number = 10): void {
|
||||
if (!error || !error.code || !error.message) return;
|
||||
if (!error || !error.message) return;
|
||||
|
||||
let errorMessage = `Message: ${error.message}\r\n`;
|
||||
|
||||
|
|
Loading…
Reference in New Issue