Skip to content

Commit

Permalink
tsc error fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
doggan committed Sep 7, 2023
1 parent f35ed4d commit bb092d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/loot-core/src/shared/util.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export function last(arr) {
export function last<T>(arr: T[]) {
return arr[arr.length - 1];
}

Expand Down

0 comments on commit bb092d9

Please sign in to comment.