mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
* docs: add AGENTS.md with feature-based architecture conventions Defines the target src/ structure, feature list, naming conventions (kebab-case, file type patterns), import direction rules, and feature boundary guidelines for the planned big-bang refactor. * docs: add features/channel/ to architecture conventions Generic channel UI (card, modal, form) goes to features/channel/. Provider-specific sub-folders: channel/notifications/ and channel/storages/. * refactor: move event emitter to lib/, project service to db/services/, dedup use-mobile hook * fix: remove unused auth import in db/services/project.ts * refactor: migrate wrappers/common to components/common (flat) * fix: remove dead commented-out code from button-with-loading.tsx * refactor: merge features/browser into features/theme, flatten upload/updates, migrate statistics * refactor: migrate wrappers/auth to features/auth Move all auth components and forms from src/components/wrappers/auth/ into src/features/auth/ with flat kebab-case naming. Handle extra reset-password-form.tsx and differing reset-password-schema.ts by copying them as reset-password-page-form.tsx and reset-password-page.schema.ts. * refactor: remove dead auth files and fix zPassword schema Delete reset-password-section.tsx and reset-password-page-form.tsx (zero consumers). Fix reset-password-page.schema.ts to import zPassword from @/lib/zod. * refactor: migrate wrappers/dashboard/common to features/layout, rename Header.tsx to header.tsx * fix: decouple layout from theme/updates cross-feature imports Use slot props (actions, updateNotification) so app/ composes ModeToggle and UpdateNotification into Header and AppSidebar. Delete dead side-bar-logo.tsx (zero consumers). * refactor: merge features/keys into features/agents, flatten sub-dirs, migrate agent wrappers - Merge src/features/keys/keys.action.ts into src/features/agents/ - Flatten src/features/agents/components/ and hooks/ into feature root - Migrate all src/components/wrappers/dashboard/agent/ files into src/features/agents/ - Update all import paths across app/ and src/ accordingly - Fix broken code-snippet import in agent-key-modal.tsx (was pointing to non-existent wrappers path) * fix: move github-releases to lib/, remove dead code and unused imports Move GitHub release fetch logic from features/updates/github.ts to lib/github-releases.ts so both features/updates and features/agents can import it without cross-feature imports. Remove commented-out impersonation block from agent-database-card.tsx. Remove unused imports (CopyButton, Terminal, Key, Info). * refactor: flatten features/projects/components, migrate project wrappers Move project.dialog/form out of sub-dir, migrate project-card, project-database-card, and delete-project button/action from wrappers into features/projects/. Update all import paths across src/ and app/. Leave wrappers/dashboard/projects/database/ untouched for Task 10. * fix: extract DatabaseCard to components/common, remove cross-feature import DatabaseCard was imported by both features/projects and features/agents, violating the no-cross-feature-import rule. Extract to components/common/ database-card.tsx so both features import from the shared layer. Also tighten extendedProps type and remove commented-out maxCount prop. * refactor: migrate all database/backup/restore/health UI to features/database Consolidates ~40 files from 5 source locations (features/dashboard/backup, features/dashboard/restore, wrappers/dashboard/backup, wrappers/dashboard/database, wrappers/dashboard/health, wrappers/dashboard/projects/database) into the new flat features/database directory with kebab-case filenames and updated @/ imports. * fix: remove dead restore-form files and console.log from health-grid Delete restore-form.tsx (186 lines all commented-out, zero consumers) and restore-form.schema.ts (only a commented import). Remove console.log(logs) from getOldestLog helper in health-grid.tsx. Cross-feature imports (database→storages for dispatchStorage/storeBackupFiles) are accepted as known architectural coupling — storage dispatch is called from database server actions at runtime and cannot route through app/ props. * refactor: migrate wrappers/admin/users to features/users, fix table-colums typo * fix: fix relative imports, string interpolation, and console.error in users feature Replace relative imports with @/ aliases in user-actions-cell.tsx and admin-user-edit-modal.tsx. Fix string interpolation bug in dialog title (was regular string, now template literal). Remove console.error from admin-user-change-role-modal.tsx. * refactor: migrate wrappers/profile to features/profile, fix profile-apperance typo * fix: remove console.error calls and ts-ignore in profile feature Remove console.error from profile-account.tsx, 2fa-form.tsx (x2). Replace @ts-ignore on fileInput.onchange with typed cast in avatar-with-upload.tsx. * refactor: rename features/organization to features/organizations, migrate all org wrappers Moves 37 org-related files from features/organization/, features/dashboard/, hooks/, wrappers/admin/organizations/, wrappers/admin/channels/organization/, and wrappers/dashboard/organization/ into a flat features/organizations/ feature directory. Updates all import paths codebase-wide. Fixes @ts-ignore and removes unused @better-fetch/fetch import in admin-organization-form. * fix: remove console.error, @ts-ignore, and unused destructures in features/organizations * refactor: migrate wrappers/organization/migration to features/migration Move all 5 migration files to src/features/migration/, update internal imports to @/features/migration/ absolute paths, remove console.log, and delete src/components/wrappers/dashboard/organization/ entirely. * refactor: migrate wrappers/admin/settings to features/settings Move all 14 settings files (email, notification, storage, s3) from wrappers/dashboard/admin/settings/ into features/settings/, rewriting imports, replacing @ts-ignore with @ts-expect-error, and renaming error params to _error where applicable. * refactor: rename notifications files to kebab convention, migrate notification logs - Rename dispatch.ts/helpers.ts/types.ts to notifications.*.ts - Migrate notification logs components from wrappers/dashboard/admin/notifications/logs/ to features/notifications/ - Fix all import paths across codebase and in providers/ - Remove unused useRouter import, replace @ts-ignore with @ts-expect-error - Delete src/components/wrappers/dashboard/admin/notifications/ * refactor: rename storages dispatch/helpers/types to kebab convention - Rename dispatch.ts/helpers.ts/types.ts to storages.*.ts - Fix all import paths across codebase and in providers/ - Fix relative ../types and ../../types imports in all storage providers to absolute @/ paths - Replace @ts-ignore with @ts-expect-error, remove console.debug/console.error * refactor: create features/channel with generic UI and notifications/storages provider sub-folders Consolidates 4 source locations into src/features/channel/: - components/wrappers/dashboard/admin/channels/ → features/channel/ (11 generic UI files) - features/notifications/providers/ → features/channel/notifications/ (9 backend + 18 form files) - features/storages/providers/ → features/channel/storages/ (backend + forms) The two conflicting google-drive/helpers.ts files (client helpers vs OAuth action) are kept separate: helpers.ts and google-drive-refresh.action.ts. Rewrites all imports codebase-wide to point to new locations. Removes console.log/console.error calls, upgrades @ts-ignore to @ts-expect-error. * fix: remove console.error from local storage provider * fix: multi-select.tsx scroll issue * fix: multi-select.tsx scroll issue
494 lines
16 KiB
TypeScript
494 lines
16 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Separator } from "@/components/ui/separator";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import {
|
|
Globe,
|
|
LogOut,
|
|
Loader2,
|
|
Fingerprint,
|
|
Trash2,
|
|
Plus,
|
|
} from "lucide-react";
|
|
import { useMutation, useQuery } from "@tanstack/react-query";
|
|
import { toast } from "sonner";
|
|
import {
|
|
revokeAllSessionsAction,
|
|
revokeSessionAction,
|
|
getPasskeysAction,
|
|
revokePasskeyAction,
|
|
} from "./security.action";
|
|
import { useRouter } from "next/navigation";
|
|
import { ResetPasswordProfileProviderModal } from "./reset-password-modal";
|
|
import { SetPasswordProfileProviderModal } from "./set-password-modal";
|
|
import { Setup2FAProfileProviderModal } from "./setup-2fa-modal";
|
|
import { Disable2FAProfileProviderModal } from "./disable-2fa-modal";
|
|
import { ViewBackupCodesModal } from "./view-backup-codes-modal";
|
|
import { getDeviceDetails } from "@/utils/detection";
|
|
import { timeAgo } from "@/utils/date-formatting";
|
|
import { authClient } from "@/lib/auth/auth-client";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Account, Session, User } from "@/db/schema/02_user";
|
|
import { Icon } from "@iconify/react";
|
|
import Image from "next/image";
|
|
import type { AuthProviderConfig } from "@/lib/auth/config";
|
|
import { is } from "date-fns/locale";
|
|
|
|
interface ProfileSecurityProps {
|
|
user: User;
|
|
sessions: Session[];
|
|
credentialAccount: Account;
|
|
currentSession: Session;
|
|
isPasswordEnabled?: boolean;
|
|
isPasskeyEnabled?: boolean;
|
|
providers: AuthProviderConfig[];
|
|
}
|
|
|
|
export function ProfileSecurity({
|
|
user,
|
|
sessions,
|
|
credentialAccount,
|
|
currentSession,
|
|
isPasswordEnabled = false,
|
|
isPasskeyEnabled = false,
|
|
providers,
|
|
}: ProfileSecurityProps) {
|
|
const router = useRouter();
|
|
|
|
const [isBackupCodesDialogOpen, setIsBackupCodesDialogOpen] = useState(false);
|
|
const [isPasswordDialogOpen, setIsPasswordDialogOpen] = useState(false);
|
|
const [isSetup2FADialogOpen, setIsSetup2FADialogOpen] = useState(false);
|
|
const [isDisable2FADialogOpen, setIsDisable2FADialogOpen] = useState(false);
|
|
const [isAddPasskeyOpen, setIsAddPasskeyOpen] = useState(false);
|
|
const [passkeyName, setPasskeyName] = useState("");
|
|
|
|
const { mutate: revokeSession, isPending: isRevoking } = useMutation({
|
|
mutationFn: async (token: string) => {
|
|
const result = await revokeSessionAction({ token });
|
|
const inner = result?.data;
|
|
if (inner?.success) {
|
|
toast.success("Session successfully revoked");
|
|
router.refresh();
|
|
} else {
|
|
toast.error("An error occurred while revoking session");
|
|
}
|
|
},
|
|
});
|
|
|
|
const { mutate: revokeOthers, isPending: isRevokingOthers } = useMutation({
|
|
mutationFn: async () => {
|
|
const result = await revokeAllSessionsAction();
|
|
const inner = result?.data;
|
|
if (inner?.success) {
|
|
toast.success("Revoking all sessions successfully done.");
|
|
router.refresh();
|
|
} else {
|
|
toast.error("An error occurred while revoking all sessions");
|
|
}
|
|
},
|
|
});
|
|
|
|
const {
|
|
data: passkeys,
|
|
isLoading: isLoadingPasskeys,
|
|
refetch: refetchPasskeys,
|
|
} = useQuery({
|
|
queryKey: ["passkeys"],
|
|
queryFn: async () => {
|
|
const result = await getPasskeysAction();
|
|
if (result?.data?.success) {
|
|
return result.data.value;
|
|
}
|
|
throw new Error("Failed to fetch passkeys");
|
|
},
|
|
});
|
|
|
|
const { mutate: revokePasskey, isPending: isRevokingPasskey } = useMutation({
|
|
mutationFn: async (id: string) => {
|
|
const result = await revokePasskeyAction({ id });
|
|
if (!result?.data?.success) {
|
|
throw new Error("Failed to revoke passkey");
|
|
}
|
|
},
|
|
onSuccess: () => {
|
|
toast.success("Passkey revoked successfully");
|
|
refetchPasskeys();
|
|
},
|
|
onError: () => {
|
|
toast.error("Failed to revoke passkey");
|
|
},
|
|
});
|
|
|
|
const { mutate: addPasskey, isPending: isAddingPasskey } = useMutation({
|
|
mutationFn: async () => {
|
|
const result = await authClient.passkey.addPasskey({
|
|
name: passkeyName || "My Passkey",
|
|
});
|
|
if (result?.error) {
|
|
throw result.error;
|
|
}
|
|
return result;
|
|
},
|
|
onSuccess: () => {
|
|
toast.success("Passkey added successfully");
|
|
setIsAddPasskeyOpen(false);
|
|
setPasskeyName("");
|
|
refetchPasskeys();
|
|
},
|
|
onError: (error: any) => {
|
|
toast.error(error.message || "Failed to add passkey");
|
|
},
|
|
});
|
|
|
|
return (
|
|
<div className="space-y-8 animate-in fade-in-50 duration-300">
|
|
<div className="mb-6 space-y-1">
|
|
<h2 className="text-2xl font-semibold tracking-tight">
|
|
Security Settings
|
|
</h2>
|
|
<p className="text-sm text-muted-foreground">
|
|
Manage your password, two-factor authentication and sessions.
|
|
</p>
|
|
</div>
|
|
|
|
{(isPasskeyEnabled || isPasswordEnabled || user.twoFactorEnabled) && (
|
|
<div className="space-y-6">
|
|
<h3 className="text-lg font-medium">Authentication</h3>
|
|
<div className="border rounded-lg p-4 space-y-4">
|
|
{isPasswordEnabled && (
|
|
<>
|
|
<div className="flex flex-col sm:flex-row sm:items-center justify-between gap-4">
|
|
<div className="space-y-1">
|
|
<div className="font-medium">Password</div>
|
|
<div className="text-sm text-muted-foreground">
|
|
{user.lastChangedPasswordAt
|
|
? `Last changed ${timeAgo(new Date(user.lastChangedPasswordAt))}`
|
|
: "Never changed"}
|
|
</div>
|
|
</div>
|
|
{credentialAccount ? (
|
|
<ResetPasswordProfileProviderModal
|
|
open={isPasswordDialogOpen}
|
|
onOpenChange={setIsPasswordDialogOpen}
|
|
/>
|
|
) : (
|
|
<SetPasswordProfileProviderModal
|
|
open={isPasswordDialogOpen}
|
|
onOpenChange={setIsPasswordDialogOpen}
|
|
/>
|
|
)}
|
|
</div>
|
|
|
|
<Separator />
|
|
</>
|
|
)}
|
|
|
|
{isPasswordEnabled && (
|
|
<div className="flex flex-col sm:flex-row sm:items-center justify-between gap-4">
|
|
<div className="space-y-1">
|
|
<div className="flex items-center gap-2">
|
|
<div className="font-medium">Two-Factor Authentication</div>
|
|
{user.twoFactorEnabled && (
|
|
<Badge
|
|
variant="secondary"
|
|
className="text-[10px] h-5 px-1.5 text-green-600 bg-green-500/10 border-0"
|
|
>
|
|
Active
|
|
</Badge>
|
|
)}
|
|
</div>
|
|
<div className="text-sm text-muted-foreground">
|
|
Enhance the security of your account by requiring a second
|
|
form of verification during login.
|
|
</div>
|
|
</div>
|
|
|
|
{user.twoFactorEnabled ? (
|
|
<div className="flex flex-col items-center gap-2">
|
|
<ViewBackupCodesModal
|
|
open={isBackupCodesDialogOpen}
|
|
onOpenChange={setIsBackupCodesDialogOpen}
|
|
/>
|
|
<Disable2FAProfileProviderModal
|
|
open={isDisable2FADialogOpen}
|
|
onOpenChange={setIsDisable2FADialogOpen}
|
|
/>
|
|
</div>
|
|
) : (
|
|
<Setup2FAProfileProviderModal
|
|
disabled={!credentialAccount}
|
|
open={isSetup2FADialogOpen}
|
|
onOpenChange={setIsSetup2FADialogOpen}
|
|
/>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{isPasskeyEnabled && (
|
|
<div className="space-y-6">
|
|
<div className="flex items-center justify-between">
|
|
<div className="space-y-1">
|
|
<h3 className="text-lg font-medium">Passkeys</h3>
|
|
<div className="text-sm text-muted-foreground">
|
|
Login securely with your fingerprint, face recognition, or
|
|
hardware key.
|
|
</div>
|
|
</div>
|
|
|
|
<Dialog open={isAddPasskeyOpen} onOpenChange={setIsAddPasskeyOpen}>
|
|
<DialogTrigger asChild>
|
|
<Button variant="outline" size="sm">
|
|
<Plus className="mr-2 h-4 w-4" />
|
|
Add Passkey
|
|
</Button>
|
|
</DialogTrigger>
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>Add New Passkey</DialogTitle>
|
|
<DialogDescription>
|
|
Create a name for your passkey to identify it later.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
<div className="grid gap-4 py-4">
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="name">Passkey Name</Label>
|
|
<Input
|
|
id="name"
|
|
placeholder="e.g. MacBook Pro, iPhone, YubiKey"
|
|
value={passkeyName}
|
|
onChange={(e) => setPasskeyName(e.target.value)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<DialogFooter>
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => setIsAddPasskeyOpen(false)}
|
|
>
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
onClick={() => addPasskey()}
|
|
disabled={isAddingPasskey}
|
|
>
|
|
{isAddingPasskey && (
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
)}
|
|
Create Passkey
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</div>
|
|
|
|
<div className="border rounded-lg divide-y">
|
|
{isLoadingPasskeys ? (
|
|
<div className="flex items-center justify-center p-4">
|
|
<Loader2 className="h-6 w-6 animate-spin text-muted-foreground" />
|
|
</div>
|
|
) : passkeys && passkeys.length > 0 ? (
|
|
passkeys.map((pk: any) => (
|
|
<PasskeyRow
|
|
key={pk.id}
|
|
passkey={pk}
|
|
onRevoke={(id) => revokePasskey(id)}
|
|
isRevoking={isRevokingPasskey}
|
|
/>
|
|
))
|
|
) : (
|
|
<div className="p-4 text-center text-muted-foreground">
|
|
No passkeys found.
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
<div className="space-y-6 pb-10">
|
|
<div className="flex items-center justify-between">
|
|
<h3 className="text-lg font-medium">Active Sessions</h3>
|
|
{sessions && sessions.length > 1 && (
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
className="text-destructive hover:text-destructive hover:bg-destructive/10"
|
|
onClick={() => revokeOthers()}
|
|
disabled={isRevokingOthers || (sessions?.length || 0) <= 1}
|
|
>
|
|
{isRevokingOthers && (
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
)}
|
|
Revoke All
|
|
</Button>
|
|
)}
|
|
</div>
|
|
<div className="border rounded-lg divide-y">
|
|
{sessions && sessions.length > 0 ? (
|
|
sessions?.map((session) => (
|
|
<SessionRow
|
|
key={session.id}
|
|
session={session}
|
|
onRevoke={(token) => revokeSession(token)}
|
|
isRevoking={isRevoking}
|
|
currentSession={currentSession}
|
|
providers={providers}
|
|
/>
|
|
))
|
|
) : (
|
|
<div className="p-4 text-center text-muted-foreground">
|
|
No active sessions found.
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function SessionRow({
|
|
session,
|
|
onRevoke,
|
|
isRevoking,
|
|
currentSession,
|
|
providers,
|
|
}: {
|
|
session: Session;
|
|
onRevoke: (token: string) => void;
|
|
isRevoking: boolean;
|
|
currentSession: Session;
|
|
providers: AuthProviderConfig[];
|
|
}) {
|
|
const deviceInfo = getDeviceDetails(session.userAgent);
|
|
const provider = providers.find((p) => p.id === (session as any).providerId);
|
|
|
|
return (
|
|
<div className="flex items-center justify-between p-4">
|
|
<div className="flex items-center gap-4">
|
|
<div className="w-10 h-10 rounded-full bg-muted flex items-center justify-center text-muted-foreground relative">
|
|
<deviceInfo.Icon className="w-5 h-5" />
|
|
{provider && (
|
|
<div className="absolute -bottom-1 -right-1 w-5 h-5 rounded-full bg-background border flex items-center justify-center overflow-hidden">
|
|
{provider.icon.startsWith("/") ||
|
|
provider.icon.startsWith("http") ? (
|
|
<Image
|
|
src={provider.icon}
|
|
alt={provider.id}
|
|
width={12}
|
|
height={12}
|
|
className="w-3 h-3"
|
|
unoptimized={provider.icon.startsWith("http")}
|
|
/>
|
|
) : (
|
|
<Icon icon={provider.icon} className="w-3 h-3" />
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="space-y-0.5">
|
|
<div className="text-sm font-medium flex items-center gap-2">
|
|
{deviceInfo.os}{" "}
|
|
<span className="text-muted-foreground font-normal">
|
|
• {deviceInfo.browser}
|
|
</span>
|
|
{provider && (
|
|
<span className="text-muted-foreground font-normal">
|
|
• {provider.title || provider.name}
|
|
</span>
|
|
)}
|
|
{session.id === currentSession.id && (
|
|
<Badge
|
|
variant="outline"
|
|
className="text-[10px] h-5 px-1.5 text-sky-600 bg-sky-50 border-sky-200 dark:bg-sky-900/20 dark:border-sky-800 dark:text-sky-400"
|
|
>
|
|
This device
|
|
</Badge>
|
|
)}
|
|
</div>
|
|
<div className="text-xs text-muted-foreground flex items-center gap-1">
|
|
<Globe className="w-3 h-3" /> {session.ipAddress} •
|
|
<span className="ml-1">
|
|
{session.id === currentSession.id
|
|
? "Active now"
|
|
: `Last active ${timeAgo(new Date(session.createdAt))}`}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{session.id !== currentSession.id && (
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className="h-8 w-8 text-muted-foreground hover:text-destructive"
|
|
onClick={() => onRevoke(session.token)}
|
|
disabled={isRevoking}
|
|
>
|
|
{isRevoking ? (
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
) : (
|
|
<LogOut className="w-4 h-4" />
|
|
)}
|
|
<span className="sr-only">Revoke</span>
|
|
</Button>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function PasskeyRow({
|
|
passkey,
|
|
onRevoke,
|
|
isRevoking,
|
|
}: {
|
|
passkey: any;
|
|
onRevoke: (id: string) => void;
|
|
isRevoking: boolean;
|
|
}) {
|
|
return (
|
|
<div className="flex items-center justify-between p-4">
|
|
<div className="flex items-center gap-4">
|
|
<div className="w-10 h-10 rounded-full bg-muted flex items-center justify-center text-muted-foreground">
|
|
<Fingerprint className="w-5 h-5" />
|
|
</div>
|
|
<div className="space-y-0.5">
|
|
<div className="font-medium text-sm">
|
|
{passkey.name || "Unnamed Passkey"}
|
|
</div>
|
|
<div className="text-xs text-muted-foreground">
|
|
Created {timeAgo(new Date(passkey.createdAt))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className="h-8 w-8 text-muted-foreground hover:text-destructive"
|
|
onClick={() => onRevoke(passkey.id)}
|
|
disabled={isRevoking}
|
|
>
|
|
{isRevoking ? (
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
) : (
|
|
<Trash2 className="w-4 h-4" />
|
|
)}
|
|
<span className="sr-only">Revoke</span>
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|