We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fa25c1 commit 9187684Copy full SHA for 9187684
client/src/components/projects/ProjectCard.tsx
@@ -15,7 +15,7 @@ const ProjectCard = ({ project, isSelected, onSelect }: ProjectCardProps) => {
15
16
const handleDelete = async (e: React.MouseEvent) => {
17
e.stopPropagation();
18
- if (confirm(`Are you sure you want to delete "${project.name}"?`)) {
+ if (confirm(`Are you really sure you want to delete "${project.name}"?`)) {
19
await deleteProject(project.id);
20
}
21
};
0 commit comments