Skip to content

Commit

Permalink
[nan-1763] fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
khaliqgant committed Sep 27, 2024
1 parent b583d37 commit eb107fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions integrations/xero/mappers/to-item.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ export function toXeroItem(item: Item) {
}

export function toFailedItem(xeroItem: XeroItem): FailedItem {
return {
...(toItem(xeroItem))
validation_errors: xeroItem?.ValidationErrors || []
}
return {
...toItem(xeroItem),
validation_errors: xeroItem?.ValidationErrors || []
};
}

0 comments on commit eb107fd

Please sign in to comment.