Evan Almloff пре 1 година
родитељ
комит
61a3b05616
1 измењених фајлова са 2 додато и 4 уклоњено
  1. 2 4
      packages/router-macro/src/route.rs

+ 2 - 4
packages/router-macro/src/route.rs

@@ -277,10 +277,8 @@ impl Route {
                 }
             }
             for segment in &self.segments {
-                if let RouteSegment::Dynamic(other, ..) = segment {
-                    if other == name {
-                        from_route = true
-                    }
+                if segment.name().as_ref() == Some(name) {
+                    from_route = true
                 }
             }
             if let Some(query) = &self.query {