Skip to content

Commit 92a3f6a

Browse files
committed
Merge branch 'next'
2 parents 143e08b + bc6fbbc commit 92a3f6a

File tree

4 files changed

+118
-105
lines changed

4 files changed

+118
-105
lines changed

ios/Podfile.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ PODS:
815815
- React-Core
816816
- react-native-netinfo (8.1.0):
817817
- React-Core
818-
- react-native-safe-area-context (4.1.4):
818+
- react-native-safe-area-context (4.2.1):
819819
- RCT-Folly
820820
- RCTRequired
821821
- RCTTypeSafety
@@ -897,13 +897,13 @@ PODS:
897897
- React-Core
898898
- RNBootSplash (4.1.3):
899899
- React-Core
900-
- RNCAsyncStorage (1.16.1):
900+
- RNCAsyncStorage (1.16.3):
901901
- React-Core
902902
- RNCClipboard (1.5.1):
903903
- React-Core
904904
- RNCMaskedView (0.1.11):
905905
- React
906-
- RNCPicker (2.3.1):
906+
- RNCPicker (2.4.0):
907907
- React-Core
908908
- RNCPushNotificationIOS (1.10.1):
909909
- React-Core
@@ -1312,7 +1312,7 @@ SPEC CHECKSUMS:
13121312
react-native-geolocation-service: c0efb872258ed9240f1003a70fca9e9757e5c785
13131313
react-native-maps: d752b0dd0e1951d815b1336332835aab6b4a836f
13141314
react-native-netinfo: 379ba2af7d2abcec0c062267abe1c9a977c72bf9
1315-
react-native-safe-area-context: 989fa91e705bc7f2bc2a0d76d72104111f825c2a
1315+
react-native-safe-area-context: 806f8370bf9fc9db90a3413aaa1aab0d2e22fdf3
13161316
react-native-simple-toast: bf002828cf816775a6809f7a9ec3907509bce11f
13171317
react-native-slider: 241935e3ea8e47599c317f512f96ee8de607d4cb
13181318
react-native-webview: 380c1a03ec94b7ed764dac8db1e7c9952d08c93a
@@ -1330,10 +1330,10 @@ SPEC CHECKSUMS:
13301330
ReactCommon: 650e33cde4fb7d36781cd3143f5276da0abb2f96
13311331
RNBackgroundFetch: f61b5eb62e86e76ec6302c3ba9798966a14aa312
13321332
RNBootSplash: 4f34ccf1a0c2573cb4ba918ab7f69d51d610827f
1333-
RNCAsyncStorage: b49b4e38a1548d03b74b30e558a1d18465b94be7
1333+
RNCAsyncStorage: 13d3b40c7fae0796d10b23fbec382e7a76807a0f
13341334
RNCClipboard: 41d8d918092ae8e676f18adada19104fa3e68495
13351335
RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489
1336-
RNCPicker: f6c760d4b314585ff35165d8640d7917ae30afb1
1336+
RNCPicker: 6d5d64e7b90c240c779ee0938ec433c11e2dd758
13371337
RNCPushNotificationIOS: 87b8d16d3ede4532745e05b03c42cff33a36cc45
13381338
RNDeviceInfo: a674f06c5a5bd496aebb809cbc3be61cfd612a65
13391339
RNFastImage: 1f2cab428712a4baaf78d6169eaec7f622556dd7

lib/screens/messages/inner-components/chat-options.tsx

+11-4
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ import type { ChatOptionsNavigationProp } from '@utils/types/routes'
2828
import type { UIDropdownOption } from '@ui-elements/dropdown'
2929

3030
export type ChatOptionsProps = {
31-
chat: BasicChat
32-
litten: BasicLitten
33-
recipient: BasicUser
34-
user: BasicUser
31+
chat?: BasicChat
32+
litten?: BasicLitten
33+
recipient?: BasicUser
34+
user?: BasicUser
3535
}
3636

3737
const ChatOptions = ({ chat, litten, recipient, user }: ChatOptionsProps) => {
@@ -169,6 +169,13 @@ const ChatOptions = ({ chat, litten, recipient, user }: ChatOptionsProps) => {
169169
)
170170
}
171171

172+
ChatOptions.defaultProps = {
173+
chat: {},
174+
litten: {},
175+
recipient: {},
176+
user: {},
177+
}
178+
172179
const styles = StyleSheet.create({
173180
menuContainer: {
174181
marginTop: 0,

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
},
9696
"dependencies": {
9797
"@expo/react-native-action-sheet": "^3.13.0",
98-
"@react-native-async-storage/async-storage": "^1.16.1",
98+
"@react-native-async-storage/async-storage": "^1.16.3",
9999
"@react-native-community/clipboard": "^1.5.1",
100100
"@react-native-community/masked-view": "^0.1.10",
101101
"@react-native-community/netinfo": "^8.1.0",
@@ -108,7 +108,7 @@
108108
"@react-native-firebase/firestore": "^14.5.1",
109109
"@react-native-firebase/remote-config": "^14.5.1",
110110
"@react-native-firebase/storage": "^14.5.1",
111-
"@react-native-picker/picker": "^2.3.1",
111+
"@react-native-picker/picker": "^2.4.0",
112112
"@react-navigation/bottom-tabs": "^6.1.0",
113113
"@react-navigation/native": "^6.0.7",
114114
"@react-navigation/stack": "^6.1.0",
@@ -136,7 +136,7 @@
136136
"react-native-popup-menu": "^0.15.12",
137137
"react-native-push-notification": "^8.1.1",
138138
"react-native-reanimated": "^2.4.1",
139-
"react-native-safe-area-context": "^4.1.4",
139+
"react-native-safe-area-context": "^4.2.1",
140140
"react-native-screens": "^3.13.1",
141141
"react-native-simple-toast": "^1.1.3",
142142
"react-native-svg": "^12.3.0",
@@ -179,23 +179,23 @@
179179
"eslint-plugin-jsx-a11y": "^6.5.1",
180180
"firebase": "^9.6.8",
181181
"firebase-admin": "^10.0.2",
182-
"firebase-tools": "^10.2.2",
182+
"firebase-tools": "^10.3.1",
183183
"flat": "^5.0.2",
184184
"husky": "^7.0.4",
185185
"jest": "^27.5.1",
186186
"jest-fetch-mock": "^3.0.3",
187187
"jsonschema": "^1.4.0",
188-
"lint-staged": "^12.3.5",
188+
"lint-staged": "^12.3.6",
189189
"lodash": "^4.17.21",
190-
"metro-react-native-babel-preset": "^0.69.0",
191-
"papaparse": "^5.3.0",
190+
"metro-react-native-babel-preset": "^0.69.1",
191+
"papaparse": "^5.3.2",
192192
"patch-package": "^6.4.6",
193193
"pinst": "^3.0.0",
194194
"pod-install": "^0.1.32",
195195
"postinstall-postinstall": "^2.1.0",
196-
"prettier": "^2.5.1",
196+
"prettier": "^2.6.0",
197197
"preval.macro": "^5.0.0",
198-
"react-devtools": "^4.24.0",
198+
"react-devtools": "^4.24.1",
199199
"react-native-svg-transformer": "^1.0.0",
200200
"react-native-version": "^4.0.0",
201201
"react-test-renderer": "17.0.2",

0 commit comments

Comments
 (0)