This commit is contained in:
Logan
2026-04-19 17:07:40 -04:00
parent 303c5b13cf
commit f9d4fcbc39
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -229,7 +229,7 @@ export default function IncidentsPage() {
)}
{showCreate && (
<CreateModal onClose={() => setShowCreate(false)} onCreate={(b) => c2api.createIncident(b)} />
<CreateModal onClose={() => setShowCreate(false)} onCreate={async (b) => { await c2api.createIncident(b); }} />
)}
</div>
);
+2 -1
View File
@@ -5,7 +5,8 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"next": "^15",