diff --git a/src/components/profile-data-table.tsx b/src/components/profile-data-table.tsx index 09886f8..5dab1b3 100644 --- a/src/components/profile-data-table.tsx +++ b/src/components/profile-data-table.tsx @@ -377,7 +377,10 @@ export function ProfilesDataTable({ variant={isRunning ? "destructive" : "default"} size="sm" disabled={!canLaunch} - className={!canLaunch ? "opacity-50" : ""} + className={cn( + "cursor-pointer", + !canLaunch && "opacity-50", + )} onClick={() => void (isRunning ? onKillProfile(profile)