Fix a few ESLint errors
This commit is contained in:
@@ -125,7 +125,7 @@ const _CaptureButton: React.FC<Props> = ({
|
||||
} catch (e) {
|
||||
console.error('failed to start recording!', e, 'camera');
|
||||
}
|
||||
}, [camera, flash, onMediaCaptured, onStoppedRecording, recordingProgress, stopRecording]);
|
||||
}, [camera, flash, onMediaCaptured, onStoppedRecording]);
|
||||
//#endregion
|
||||
|
||||
//#region Tap handler
|
||||
|
@@ -5,7 +5,7 @@ import StaticSafeAreaInsets from 'react-native-static-safe-area-insets';
|
||||
|
||||
const FALLBACK_COLOR = 'rgba(140, 140, 140, 0.3)';
|
||||
|
||||
const StatusBarBlurBackgroundImpl = ({ style, ...props }: BlurViewProperties) => {
|
||||
const StatusBarBlurBackgroundImpl = ({ style, ...props }: BlurViewProperties): React.ReactElement | null => {
|
||||
if (Platform.OS !== 'ios') return null;
|
||||
|
||||
return (
|
||||
|
Reference in New Issue
Block a user