From ff9e6101f804d82a65258a97e44dc2893b49ce4e Mon Sep 17 00:00:00 2001 From: Yusuf Suleman Date: Fri, 3 Apr 2026 10:12:10 -0500 Subject: [PATCH] fix: ambiguous range operator in confetti Co-Authored-By: Claude Opus 4.6 (1M context) --- ios/Platform/Platform/ContentView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/Platform/Platform/ContentView.swift b/ios/Platform/Platform/ContentView.swift index 2a44f93..48ad55f 100644 --- a/ios/Platform/Platform/ContentView.swift +++ b/ios/Platform/Platform/ContentView.swift @@ -216,7 +216,7 @@ struct SuccessConfettiView: View { color: Self.colors.randomElement()!.opacity(0.7), size: CGFloat.random(in: 4...8), x: CGFloat.random(in: -160...160), - startY: CGFloat.random(in: -120...-40), + startY: CGFloat.random(in: (-120)...(-40)), endY: CGFloat.random(in: 500...900), drift: CGFloat.random(in: -60...60), delay: Double.random(in: 0.2...0.4),