From 88a1fd10322849e3246bc9dad6c85359af30ba0e Mon Sep 17 00:00:00 2001 From: Sam Symons Date: Wed, 4 Oct 2023 12:00:46 -0700 Subject: [PATCH] Remove rotation effect. --- DuckDuckGo/NetworkProtectionStatusView.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/DuckDuckGo/NetworkProtectionStatusView.swift b/DuckDuckGo/NetworkProtectionStatusView.swift index 238fcc860e..c5f637379d 100644 --- a/DuckDuckGo/NetworkProtectionStatusView.swift +++ b/DuckDuckGo/NetworkProtectionStatusView.swift @@ -89,9 +89,6 @@ struct NetworkProtectionStatusView: View { .scaledToFit() .frame(height: 96) .padding(8) - .if(statusModel.shouldShowError) { - $0.rotationEffect(Angle.degrees(statusModel.shouldShowError ? 180 : 0)) - } Text(statusModel.headerTitle) .font(.system(size: 17, weight: .semibold)) .multilineTextAlignment(.center)