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 && ( {showCreate && (
<CreateModal onClose={() => setShowCreate(false)} onCreate={(b) => c2api.createIncident(b)} /> <CreateModal onClose={() => setShowCreate(false)} onCreate={async (b) => { await c2api.createIncident(b); }} />
)} )}
</div> </div>
); );
+2 -1
View File
@@ -5,7 +5,8 @@
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",
"start": "next start" "start": "next start",
"typecheck": "tsc --noEmit"
}, },
"dependencies": { "dependencies": {
"next": "^15", "next": "^15",