Skip to content

Commit 79cdfe2

Browse files
committed
Add Order Details route
1 parent 48735f3 commit 79cdfe2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

WooCommerce/Classes/Universal Links/UniversalLinkRouter.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ struct UniversalLinkRouter: LinkRouter {
1313
matcher = RouteMatcher(routes: routes)
1414
}
1515

16-
static let defaultRoutes: [Route] = []
16+
static let defaultRoutes: [Route] = [
17+
OrderDetailsRoute()
18+
]
1719

1820
func handle(url: URL) {
1921
guard let matchedRoute = matcher.firstRouteMatching(url) else {

0 commit comments

Comments
 (0)