From 20f3f8e76cc539f48d018b34b7c14da6bad45b2a Mon Sep 17 00:00:00 2001 From: Alex Yang <32620988+DatProJack@users.noreply.github.com> Date: Wed, 25 Oct 2023 21:11:50 -0500 Subject: [PATCH] comments --- src/database/decision-db.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/database/decision-db.ts b/src/database/decision-db.ts index 9af6875f..8fc6b4fc 100644 --- a/src/database/decision-db.ts +++ b/src/database/decision-db.ts @@ -24,11 +24,11 @@ export class DecisionInfo extends Document { @prop({ required: true }) public response: DecisionResponse; - @prop( { required: true} ) - public reviewer: string; - - @prop( { required: true} ) - public emailSent: boolean; + @prop({ required: true }) + public reviewer: string; + + @prop({ required: true }) + public emailSent: boolean; } export class DecisionEntry extends Document {