From acffc22d9c2b492eb2ddb8b3c16f1de84a23ab0d Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Tue, 10 Oct 2023 17:25:07 -0600 Subject: [PATCH] Use correct typescript nullable notation --- backend/backend-schema-proposal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/backend-schema-proposal.md b/backend/backend-schema-proposal.md index a502c15f..7bb068b2 100644 --- a/backend/backend-schema-proposal.md +++ b/backend/backend-schema-proposal.md @@ -66,7 +66,7 @@ GET `/dashboard` interface Dashboard { routes: Route[]; stops: Stop[]; - alert: Alert | null; + alert?: Alert; } interface Alert {