From 8cdd20dfb487619f7e7b3efadfcd8df758905078 Mon Sep 17 00:00:00 2001 From: Davide Date: Tue, 15 Oct 2024 21:39:47 +0200 Subject: [PATCH] Fix animation in OpenVPNView --- .../Library/Sources/AppUI/Views/Modules/OpenVPNView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Passepartout/Library/Sources/AppUI/Views/Modules/OpenVPNView.swift b/Passepartout/Library/Sources/AppUI/Views/Modules/OpenVPNView.swift index 566aa654..273eddb4 100644 --- a/Passepartout/Library/Sources/AppUI/Views/Modules/OpenVPNView.swift +++ b/Passepartout/Library/Sources/AppUI/Views/Modules/OpenVPNView.swift @@ -72,7 +72,7 @@ struct OpenVPNView: View { var body: some View { manualView .modifier(providerModifier) - .themeAnimation(on: editor.profile.modulesMetadata, category: .modules) + .themeAnimation(on: draft, category: .modules) .moduleView(editor: editor, draft: draft, withName: !isServerPushed) .navigationDestination(for: Subroute.self, destination: destination) }