From 27ab3b0b21f89d6c507302a9a6838bf23e6f26dd Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Mon, 4 Sep 2023 17:35:24 +0200 Subject: [PATCH] Fix mobile compilation --- front/apps/mobile/app/movie/[slug]/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/apps/mobile/app/movie/[slug]/index.tsx b/front/apps/mobile/app/movie/[slug]/index.tsx index fb4abc17..fd97ad59 100644 --- a/front/apps/mobile/app/movie/[slug]/index.tsx +++ b/front/apps/mobile/app/movie/[slug]/index.tsx @@ -19,7 +19,7 @@ */ import { MovieDetails } from "@kyoo/ui"; -import { withRoute } from "../../utils"; +import { withRoute } from "../../../utils"; export default withRoute(MovieDetails, { options: { headerTransparent: true, headerStyle: { backgroundColor: "transparent" } },