Skip to content

Commit bbc2e0c

Browse files
committed
chore(*): remove useless files
1 parent da423fe commit bbc2e0c

File tree

6 files changed

+5
-45
lines changed

6 files changed

+5
-45
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

example/ios/Example/PrivacyInfo.xcprivacy

Lines changed: 0 additions & 37 deletions
This file was deleted.

example/src/components/DemoButton.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ export function DemoButton({
2222
return (
2323
<Pressable
2424
onPress={() => {
25-
if (!disabled) {onPress();}
25+
if (!disabled) {
26+
onPress();
27+
}
2628
}}
2729
style={{
2830
backgroundColor: color ? color : disabled ? '#FF7355' : '#F64325',

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
"root": true,
127127
"extends": [
128128
"@react-native-community",
129+
"@react-native",
129130
"prettier"
130131
],
131132
"plugins": [

src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { NativeModules, Platform } from 'react-native';
22
import type { Environment, Video } from './types';
33

44
const LINKING_ERROR =
5-
'The package \'@api.video/react-native-video-uploader\' doesn\'t seem to be linked. Make sure: \n\n' +
5+
"The package '@api.video/react-native-video-uploader' doesn't seem to be linked. Make sure: \n\n" +
66
Platform.select({ ios: "- You have run 'pod install'\n", default: '' }) +
77
'- You rebuilt the app after installing the package\n' +
88
'- You are not using Expo Go\n';

0 commit comments

Comments
 (0)