From 9acc4344f2deecf827367284a81cfef336a1653e Mon Sep 17 00:00:00 2001 From: Maxime Aubanel Date: Wed, 20 Sep 2023 15:32:22 +0200 Subject: [PATCH] Fix import --- src/app/error.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/error.tsx b/src/app/error.tsx index 6aa3167..9adafe1 100644 --- a/src/app/error.tsx +++ b/src/app/error.tsx @@ -1,5 +1,6 @@ "use client"; // Error components must be Client Components -import styles from "./page.module.css"; + +import styles from "./error.module.css"; type Props = { error: Error; reset: () => void };