aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/ui/back-button.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components/ui/back-button.tsx')
-rw-r--r--apps/web/components/ui/back-button.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/web/components/ui/back-button.tsx b/apps/web/components/ui/back-button.tsx
index 685930df..46c99f7c 100644
--- a/apps/web/components/ui/back-button.tsx
+++ b/apps/web/components/ui/back-button.tsx
@@ -1,7 +1,9 @@
"use client";
import { useRouter } from "next/navigation";
-import { Button, ButtonProps } from "./button";
+
+import type { ButtonProps } from "./button";
+import { Button } from "./button";
export function BackButton({ ...props }: ButtonProps) {
const router = useRouter();