Skip to content

Commit

Permalink
chore(*): remove useless files
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Oct 31, 2024
1 parent da423fe commit bbc2e0c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 45 deletions.
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

4 changes: 0 additions & 4 deletions .eslintrc.js

This file was deleted.

37 changes: 0 additions & 37 deletions example/ios/Example/PrivacyInfo.xcprivacy

This file was deleted.

4 changes: 3 additions & 1 deletion example/src/components/DemoButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ export function DemoButton({
return (
<Pressable
onPress={() => {
if (!disabled) {onPress();}
if (!disabled) {
onPress();
}
}}
style={{
backgroundColor: color ? color : disabled ? '#FF7355' : '#F64325',
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@
"root": true,
"extends": [
"@react-native-community",
"@react-native",
"prettier"
],
"plugins": [
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { NativeModules, Platform } from 'react-native';
import type { Environment, Video } from './types';

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

0 comments on commit bbc2e0c

Please sign in to comment.