Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
VickyStash committed Dec 6, 2024
1 parent 86c486b commit 43330f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TestToolMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function TestToolMenu({network}: TestToolMenuProps) {
accessibilityLabel="Force offline"
isOn={!!network?.shouldForceOffline}
onToggle={() => Network.setShouldForceOffline(!network?.shouldForceOffline)}
disabled={isUsingImportedState || network?.shouldSimulatePoorConnection}
disabled={!!isUsingImportedState || network?.shouldSimulatePoorConnection}
/>
</TestToolRow>

Expand Down

0 comments on commit 43330f8

Please sign in to comment.