Skip to content

Commit ca7a4d5

Browse files
committed
Merge branch 'main' into JKobrynski/feat/81830-remove-try-catch-from-getcollectionkey
2 parents cbacd07 + 0c9172b commit ca7a4d5

4 files changed

Lines changed: 4 additions & 12 deletions

File tree

.github/actionlint.yml

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

lib/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ type ExpandOnyxKeys<TKey extends OnyxKey> = TKey extends CollectionKeyBase ? NoI
334334
* If a new method is added to OnyxUtils.METHOD constant, it must be added to OnyxMethodValueMap type.
335335
* Otherwise it will show static type errors.
336336
*/
337-
type OnyxUpdate<TKey extends OnyxKey = OnyxKey> = {
337+
type OnyxUpdate<TKey extends OnyxKey> = {
338338
// ⚠️ DO NOT CHANGE THIS TYPE, UNLESS YOU KNOW WHAT YOU ARE DOING. ⚠️
339339
[K in TKey]:
340340
| {onyxMethod: typeof OnyxUtils.METHOD.SET; key: ExpandOnyxKeys<K>; value: OnyxSetInput<K>}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-onyx",
3-
"version": "3.0.35",
3+
"version": "3.0.37",
44
"author": "Expensify, Inc.",
55
"homepage": "https://expensify.com",
66
"description": "State management for React Native",

0 commit comments

Comments
 (0)