Skip to content

Commit 9187684

Browse files
committed
Test merge grading
1 parent 3fa25c1 commit 9187684

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/components/projects/ProjectCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const ProjectCard = ({ project, isSelected, onSelect }: ProjectCardProps) => {
1515

1616
const handleDelete = async (e: React.MouseEvent) => {
1717
e.stopPropagation();
18-
if (confirm(`Are you sure you want to delete "${project.name}"?`)) {
18+
if (confirm(`Are you really sure you want to delete "${project.name}"?`)) {
1919
await deleteProject(project.id);
2020
}
2121
};

0 commit comments

Comments
 (0)