Skip to content

Commit

Permalink
Fixed linter issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
fvlvte committed Oct 13, 2023
1 parent cbf73eb commit b3a8a26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libs/Firebase/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {StartTrace, StopTrace} from './types';

/** Web does not use Firebase for performance tracing */
const startTrace: StartTrace = (customEventName: string) => {};
const stopTrace: StopTrace = (customEventName: string) => {};
const startTrace: StartTrace = () => {};
const stopTrace: StopTrace = () => {};

export default {
startTrace,
Expand Down

0 comments on commit b3a8a26

Please sign in to comment.