Skip to content

Commit

Permalink
fix: verify banner
Browse files Browse the repository at this point in the history
  • Loading branch information
DiRaiks committed Mar 15, 2024
1 parent 458d87c commit e246a08
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion features/ipfs/security-status-banner/use-version-check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ export const useVersionCheck = () => {
);

const isNotVerifiable = overrideWithQAMockBoolean(
!!remoteVersionSWR.error || !remoteVersionSWR.data,
!!remoteVersionSWR.error ||
(!remoteVersionSWR.loading && !remoteVersionSWR.data),
'mock-qa-helpers-security-banner-is-not-verifiable',
);

Expand Down

0 comments on commit e246a08

Please sign in to comment.