refactor: remove unused import

This commit is contained in:
sirin 2024-10-28 21:06:12 +07:00
parent 5ec07e1454
commit ce68ab6b20

View File

@ -14,7 +14,6 @@ import {
DialogClose, DialogClose,
} from "@/components/ui/dialog"; } from "@/components/ui/dialog";
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import useSession from "@/lib/supabase/useSession";
import { createSupabaseClient } from "@/lib/supabase/clientComponentClient"; import { createSupabaseClient } from "@/lib/supabase/clientComponentClient";
import { useRouter } from "next/navigation"; import { useRouter } from "next/navigation";
@ -38,9 +37,6 @@ const CheckoutPage = ({
const isAcceptTerm = isAcceptTermAndService(); const isAcceptTerm = isAcceptTermAndService();
const router = useRouter(); const router = useRouter();
const { session } = useSession();
const user = session?.user;
useEffect(() => { useEffect(() => {
fetch("/api/create-payment-intent", { fetch("/api/create-payment-intent", {
method: "POST", method: "POST",
@ -108,7 +104,8 @@ const CheckoutPage = ({
<div className="flex items-center justify-center"> <div className="flex items-center justify-center">
<div <div
className="inline-block h-8 w-8 animate-spin rounded-full border-4 border-solid border-current border-e-transparent align-[-0.125em] text-surface motion-reduce:animate-[spin_1.5s_linear_infinite] dark:text-white" className="inline-block h-8 w-8 animate-spin rounded-full border-4 border-solid border-current border-e-transparent align-[-0.125em] text-surface motion-reduce:animate-[spin_1.5s_linear_infinite] dark:text-white"
role="status"> role="status"
>
<span className="!absolute !-m-px !h-px !w-px !overflow-hidden !whitespace-nowrap !border-0 !p-0 ![clip:rect(0,0,0,0)]"> <span className="!absolute !-m-px !h-px !w-px !overflow-hidden !whitespace-nowrap !border-0 !p-0 ![clip:rect(0,0,0,0)]">
Loading... Loading...
</span> </span>
@ -130,7 +127,8 @@ const CheckoutPage = ({
type="button" type="button"
onClick={() => setIsDialogOpen(true)} onClick={() => setIsDialogOpen(true)}
disabled={!stripe || loading} disabled={!stripe || loading}
className="text-white w-full p-5 bg-black mt-2 rounded-md font-bold disabled:opacity-50 disabled:animate-pulse"> className="text-white w-full p-5 bg-black mt-2 rounded-md font-bold disabled:opacity-50 disabled:animate-pulse"
>
{!loading ? `Pay $${amount}` : "Processing..."} {!loading ? `Pay $${amount}` : "Processing..."}
</button> </button>
</DialogTrigger> </DialogTrigger>