Skip to content

Commit

Permalink
🐞 Fix: ModalSheetState.isGeneric
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Sep 29, 2024
1 parent 4e497cb commit 11e31bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Temp/ModalSheetState.swift
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public enum ModalSheetState: String {
return false;

default:
return self.isSpecific && !otherState.isSpecific
return !self.isSpecific && otherState.isSpecific
};
};
};

0 comments on commit 11e31bf

Please sign in to comment.