diff --git a/package.json b/package.json index 4c79abfa..6f8c2355 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,8 @@ "ios": "react-native run-ios", "app:build": "bundle exec fastlane build", "test": "jest --watchAll", - "release": "scripts/release.sh" + "release": "scripts/release.sh", + "clean": "react-native-clean-project" }, "dependencies": { "@expo/react-native-action-sheet": "^3.9.0", @@ -114,6 +115,7 @@ "jest": "^26.6.3", "jest-expo": "^40.0.2", "nock": "^13.0.11", + "react-native-clean-project": "^3.6.3", "react-navigation": "^4.4.4", "react-navigation-stack": "^2.10.4", "react-test-renderer": "^17.0.1", diff --git a/src/components/Emojis.tsx b/src/components/Emojis.tsx index f1bd3183..2b3ba57c 100644 --- a/src/components/Emojis.tsx +++ b/src/components/Emojis.tsx @@ -116,7 +116,6 @@ const ComponentEmojis: React.FC = ({ const addEmoji = useCallback( (emojiShortcode: string) => { - console.log(selectionRange.current) if (value?.length) { const contentFront = value.slice(0, selectionRange.current?.start) const contentRear = value.slice(selectionRange.current?.end) diff --git a/src/screens/Compose/Root/Footer/Poll.tsx b/src/screens/Compose/Root/Footer/Poll.tsx index 2778c5f3..f3c8f89d 100644 --- a/src/screens/Compose/Root/Footer/Poll.tsx +++ b/src/screens/Compose/Root/Footer/Poll.tsx @@ -84,7 +84,7 @@ const ComposePoll: React.FC = () => {