Skip to content

Commit

Permalink
fix(queue): use isPending instead of isLoading for loading state
Browse files Browse the repository at this point in the history
  • Loading branch information
matyson committed Jan 30, 2025
1 parent 3323037 commit 7ca4842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/spu-ui/src/app/_components/queue/queue.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export function Queue() {
}
}

if (queue.isLoading) {
if (queue.isPending) {
return <QueueSkeleton />;
}

Expand Down

0 comments on commit 7ca4842

Please sign in to comment.