Skip to content

Commit

Permalink
Fix verified builds pda loading (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngundotra authored Dec 20, 2024
1 parent f9a7787 commit 9c350e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/utils/verified-builds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ function useEnrichedOsecInfo({
if (!osecInfo || pdaError) {
return { data: null, error: pdaError, isLoading: isPdaLoading };
}
if (isPdaLoading) {
if (!pdaData || isPdaLoading) {
return { data: null, isLoading: isPdaLoading };
}

Expand Down

0 comments on commit 9c350e5

Please sign in to comment.