Skip to content

Commit

Permalink
fix double negation
Browse files Browse the repository at this point in the history
  • Loading branch information
NikkiWines authored and ishpaul777 committed Jan 15, 2025
1 parent bc15302 commit fc0f89f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/signin/SAMLSignInPage/index.native.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ function SAMLSignInPage() {
/>
)}
<FullPageOfflineBlockingView>
{!!SAMLUrl ? (
{!SAMLUrl ? (
<SAMLLoadingIndicator />
) : (
<WebView
ref={webViewRef}
originWhitelist={['https://*']}
Expand All @@ -115,8 +117,6 @@ function SAMLSignInPage() {
renderLoading={() => <SAMLLoadingIndicator />}
onNavigationStateChange={handleNavigationStateChange}
/>
) : (
<SAMLLoadingIndicator />
)}
</FullPageOfflineBlockingView>
</ScreenWrapper>
Expand Down

0 comments on commit fc0f89f

Please sign in to comment.