Canvas: Get ready for trial

Change-Id: I16088fa041dd0fb35ac801ddbbedf3c1c6e8563d
diff --git a/apps/canvas/front/src/components/actions.tsx b/apps/canvas/front/src/components/actions.tsx
index c7481c1..b8771b3 100644
--- a/apps/canvas/front/src/components/actions.tsx
+++ b/apps/canvas/front/src/components/actions.tsx
@@ -164,6 +164,9 @@
 		if (projectId == null) {
 			return;
 		}
+		if (!confirm("Are you sure you want to delete this project? This action cannot be undone.")) {
+			return;
+		}
 		const resp = await fetch(`/api/project/${projectId}`, {
 			method: "DELETE",
 		});