From 656ff9274eea83e4b689dc519fe986fcc08faf9e Mon Sep 17 00:00:00 2001 From: Joe Masilotti Date: Mon, 21 Oct 2024 11:15:13 -0700 Subject: [PATCH] The animated flag comes from path configuration --- Source/Turbo/Navigator/Extensions/VisitProposalExtension.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Turbo/Navigator/Extensions/VisitProposalExtension.swift b/Source/Turbo/Navigator/Extensions/VisitProposalExtension.swift index 4195c3c..b44fc53 100644 --- a/Source/Turbo/Navigator/Extensions/VisitProposalExtension.swift +++ b/Source/Turbo/Navigator/Extensions/VisitProposalExtension.swift @@ -62,7 +62,7 @@ public extension VisitProposal { /// Allows the proposal to change the animation status when pushing, popping or presenting. var animated: Bool { - if let animated = parameters?["animated"] as? Bool { + if let animated = properties["animated"] as? Bool { return animated }