Skip to content

Commit

Permalink
Merge pull request #42 from hotwired/fix-animated-flag
Browse files Browse the repository at this point in the history
Fix `animated` flag from path configuration
  • Loading branch information
joemasilotti authored Nov 13, 2024
2 parents e9e371a + 656ff92 commit f52aa92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit f52aa92

Please sign in to comment.