Skip to content

Commit

Permalink
Fix ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim committed Feb 25, 2020
1 parent 8323567 commit b501c82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/component/src/ErrorBox.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import PropTypes from 'prop-types';
import React from 'react';
import React, { useEffect } from 'react';

import ScreenReaderText from './ScreenReaderText';
import useLocalizer from './hooks/useLocalizer';
Expand Down
2 changes: 1 addition & 1 deletion packages/component/src/hooks/useTrackTiming.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ export default function useTrackTiming() {
onTelemetry && onTelemetry(timingEndEvent);
}
},
[onTelemetry, readTelemetryDimensions]
[onTelemetry, readTelemetryDimensions, trackException]
);
}

0 comments on commit b501c82

Please sign in to comment.