Skip to content

Commit

Permalink
fix: No active position shown when loading lp positions
Browse files Browse the repository at this point in the history
  • Loading branch information
memoyil committed Jan 3, 2025
1 parent cc102fe commit 6651826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/views/universalFarms/PositionPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ export const PositionPage = () => {
if (!account) {
return <EmptyListPlaceholder text={t('Please Connect Wallet to view positions.')} />
}
if (v3Loading && v2Loading && stableLoading) {
if (v3Loading || v2Loading || stableLoading) {
return (
<>
<PositionItemSkeleton />
Expand Down

0 comments on commit 6651826

Please sign in to comment.