Skip to content

Commit

Permalink
fix #109
Browse files Browse the repository at this point in the history
  • Loading branch information
bbohlender committed Feb 27, 2025
1 parent cad1156 commit c7c5d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/uikit/src/order.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export type OrderInfo = {
instancedGroupDependencies?: Signal<Record<string, any>> | Record<string, any>
}

function compareOrderInfo(o1: OrderInfo | undefined, o2: OrderInfo | undefined): number {
export function compareOrderInfo(o1: OrderInfo | undefined, o2: OrderInfo | undefined): number {
if (o1 == null || o2 == null) {
return 0
}
Expand Down

0 comments on commit c7c5d8c

Please sign in to comment.