From 11e31bf123e8f072bf640b44ab6720a3c5bfbd54 Mon Sep 17 00:00:00 2001 From: Dominic Go Date: Sun, 29 Sep 2024 14:45:50 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20Fix:=20`ModalSheetState.isGeneri?= =?UTF-8?q?c`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ios/Temp/ModalSheetState.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/Temp/ModalSheetState.swift b/ios/Temp/ModalSheetState.swift index aa6407f1..7611f7fb 100644 --- a/ios/Temp/ModalSheetState.swift +++ b/ios/Temp/ModalSheetState.swift @@ -104,7 +104,7 @@ public enum ModalSheetState: String { return false; default: - return self.isSpecific && !otherState.isSpecific + return !self.isSpecific && otherState.isSpecific }; }; };