diff --git a/src/components/auth/AccountModal.tsx b/src/components/auth/AccountModal.tsx
index 7cbb4f63..78ee45a6 100644
--- a/src/components/auth/AccountModal.tsx
+++ b/src/components/auth/AccountModal.tsx
@@ -1,19 +1,7 @@
"use client";
+import Link from "next/link";
import { useState } from "react";
-import {
- Dialog,
- DialogContent,
- DialogHeader,
- DialogTitle,
-} from "@/components/ui/dialog";
-import { Button } from "@/components/ui/button";
-import { Input } from "@/components/ui/input";
-import { Label } from "@/components/ui/label";
-import { authClient, useSession } from "@/lib/auth-client";
-import { toast } from "sonner";
-import { Loader2 } from "lucide-react";
-import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
import {
AlertDialog,
AlertDialogAction,
@@ -24,6 +12,19 @@ import {
AlertDialogHeader,
AlertDialogTitle,
} from "@/components/ui/alert-dialog";
+import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
+import { Button } from "@/components/ui/button";
+import {
+ Dialog,
+ DialogContent,
+ DialogHeader,
+ DialogTitle,
+} from "@/components/ui/dialog";
+import { Input } from "@/components/ui/input";
+import { Label } from "@/components/ui/label";
+import { authClient, useSession } from "@/lib/auth-client";
+import { CreditCard, Loader2 } from "lucide-react";
+import { toast } from "sonner";
interface AccountModalProps {
open: boolean;
@@ -43,6 +44,7 @@ export function AccountModal({ open, onOpenChange }: AccountModalProps) {
@@ -71,13 +73,13 @@ function ProfileForm({ user }: { user: any }) {
return (