Skip to content

Commit

Permalink
housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
tylim88 committed Apr 5, 2024
1 parent e64528c commit 871a98e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/transaction/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ export const updateCreator =
return transaction.update(
// @ts-expect-error
reference,
flatten(data) as Record<string, undefined>
flatten(data)
)
}
2 changes: 1 addition & 1 deletion src/transaction/updateNoFlatten.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export const updateNoFlattenCreator =
return transaction.update(
// @ts-expect-error
reference,
data as Record<string, undefined>
data
)
}

0 comments on commit 871a98e

Please sign in to comment.