Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
FitseTLT committed Feb 14, 2025
1 parent 6d2767a commit e25bb93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Onyx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ function updateSnapshots(data: OnyxUpdate[]) {
const oldValue = updatedData[key] || {};
const newValue = lodashPick(value, Object.keys(snapshotData[key]));

updatedData = {...updatedData, [key]: value === null ? value: Object.assign(oldValue, newValue)};
updatedData = {...updatedData, [key]: value === null ? value : Object.assign(oldValue, newValue)};
});

// Skip the update if there's no data to be merged
Expand Down

0 comments on commit e25bb93

Please sign in to comment.