Skip to content

Commit

Permalink
Omit typedef for compare
Browse files Browse the repository at this point in the history
  • Loading branch information
kewde committed Jul 1, 2017
1 parent d3969dd commit 7a04ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/wallet/receive/receive.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export class ReceiveComponent implements OnInit {
}

sortArrays(type: string) {
function compare(a: Object, b: Object) {
function compare(a, b) {
return b.id - a.id;
}

Expand Down

0 comments on commit 7a04ea1

Please sign in to comment.