diff --git a/src/app/Components/ArtsyWebView.tsx b/src/app/Components/ArtsyWebView.tsx index face69b1111..207c86f9f22 100644 --- a/src/app/Components/ArtsyWebView.tsx +++ b/src/app/Components/ArtsyWebView.tsx @@ -215,7 +215,9 @@ export const ArtsyWebView = forwardRef< // to a different vanityURL that we can handle inapp, such as Fair & Partner. if ( result.type === "match" && - ["ReactWebView", "ModalWebView", "VanityURLEntity"].includes(result.module) + ["ReactWebView", "ModalWebView", "VanityURLEntity", "LiveAuctionWebView"].includes( + result.module + ) ) { if (innerRef.current) { innerRef.current.shareTitleUrl = targetURL diff --git a/src/app/routes.ts b/src/app/routes.ts index 7439c67991b..ea05e4c3876 100644 --- a/src/app/routes.ts +++ b/src/app/routes.ts @@ -196,7 +196,7 @@ export function getDomainMap(): Record { const liveDotArtsyDotNet: RouteMatcher[] = compact([ Platform.OS === "ios" ? addRoute("/*", "LiveAuction", (params) => ({ slug: params["*"] })) - : addRoute("/*", "ReactWebView", (params) => ({ + : addRoute("/*", "ModalWebView", (params) => ({ url: unsafe__getEnvironment().predictionURL + "/" + params["*"], })), ])