Skip to content

Commit

Permalink
chore: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Jan 24, 2025
1 parent d489116 commit a898894
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion packages/app/lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,6 @@ export namespace Utils {
*/
export const utils: ReactNativeFirebase.FirebaseModuleWithStatics<Utils.Module, Utils.Statics>;


export * from './modular';

declare const module: ReactNativeFirebase.Module;
Expand Down
1 change: 1 addition & 0 deletions packages/app/lib/internal/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ const defaultLogHandler = (instance, logType, ...args) => {
const method = ConsoleMethod[logType];
if (method) {
// 'log' | 'info' | 'warn' | 'error'
// eslint-disable-next-line no-console
console[method](`[${now}] ${instance.name}:`, ...args);
} else {
throw new Error(`Attempted to log a message with an invalid logType (value: ${logType})`);

Check warning on line 79 in packages/app/lib/internal/logger.js

View check run for this annotation

Codecov / codecov/patch

packages/app/lib/internal/logger.js#L78-L79

Added lines #L78 - L79 were not covered by tests
Expand Down

0 comments on commit a898894

Please sign in to comment.