Skip to content

Commit

Permalink
fix(app): worker order
Browse files Browse the repository at this point in the history
  • Loading branch information
kingsleydon committed Aug 30, 2024
1 parent 9c6b23e commit bf22ef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/app/components/BasePool/Worker/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const WorkerList: FC<{basePool: BasePoolCommonFragment}> = ({basePool}) => {
subsquidClient,
{
after: page === 1 ? undefined : String((page - 1) * pageSize),
orderBy,
orderBy: [orderBy, 'id_ASC'],
first: pageSize,
where: {
AND: [
Expand Down

0 comments on commit bf22ef3

Please sign in to comment.