diff --git a/sigap-website/app/(protected)/(admin)/dashboard/page.tsx b/sigap-website/app/(protected)/(admin)/dashboard/page.tsx
index afc58de..118a272 100644
--- a/sigap-website/app/(protected)/(admin)/dashboard/page.tsx
+++ b/sigap-website/app/(protected)/(admin)/dashboard/page.tsx
@@ -1,3 +1,4 @@
+import { DateTimePicker2 } from "@/app/_components/ui/date-picker";
import { createClient } from "@/utils/supabase/server";
import { redirect } from "next/navigation";
@@ -21,6 +22,7 @@ export default async function DashboardPage() {
{JSON.stringify(user, null, 2)}
+
diff --git a/sigap-website/app/(protected)/(admin)/dashboard/user-management/_components/sheet.tsx b/sigap-website/app/(protected)/(admin)/dashboard/user-management/_components/sheet.tsx
index f485b2c..21dbb32 100644
--- a/sigap-website/app/(protected)/(admin)/dashboard/user-management/_components/sheet.tsx
+++ b/sigap-website/app/(protected)/(admin)/dashboard/user-management/_components/sheet.tsx
@@ -147,22 +147,6 @@ export function UserDetailSheet({
},
});
- const handleDeleteUser = () => {
- deleteUserMutation.mutate();
- };
-
- const handleSendPasswordRecovery = () => {
- sendPasswordRecoveryMutation.mutate();
- };
-
- const handleSendMagicLink = () => {
- sendMagicLinkMutation.mutate();
- };
-
- const handleToggleBan = () => {
- toggleBanMutation.mutate();
- };
-
const handleCopyItem = (item: string) => {
navigator.clipboard.writeText(item);
toast.success("Copied to clipboard");
@@ -300,7 +284,7 @@ export function UserDetailSheet({