Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/utils/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

import { FirebaseError as FireabseErrorInterface } from '../firebase-namespace-api';
import { FirebaseError as FirebaseErrorInterface } from '../firebase-namespace-api';
import { deepCopy } from '../utils/deep-copy';

/**
Expand All @@ -39,7 +39,7 @@ interface ServerToClientCode {
* @param {ErrorInfo} errorInfo The error information (code and message).
* @constructor
*/
export class FirebaseError extends Error implements FireabseErrorInterface {
export class FirebaseError extends Error implements FirebaseErrorInterface {
constructor(private errorInfo: ErrorInfo) {
super(errorInfo.message);

Expand Down