From 2ba05cd186ca71a42033b5a44312776d9ea33a62 Mon Sep 17 00:00:00 2001 From: Rushil Umaretiya Date: Mon, 6 Mar 2023 11:14:56 -0500 Subject: [PATCH] fix(api): called variable before instantiation --- src/api/operator.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/api/operator.js b/src/api/operator.js index d306454..6a3c199 100644 --- a/src/api/operator.js +++ b/src/api/operator.js @@ -7,8 +7,9 @@ dotenv.config(); const app = Router(); app.post("/", async (req, res) => { + let operator = null; try { - const operator = await db.operator.create({ + operator = await db.operator.create({ data: { name: req.body.name, phoneNumber: req.body.phoneNumber, @@ -27,9 +28,10 @@ app.post("/", async (req, res) => { app.post("/update", async (req, res) => { const { authorized, webSession } = await authorize(req, res); + let operator = null; if (!authorized) return res.status(401).send(null); try { - const operator = await db.operator.update({ + operator = await db.operator.update({ where: { id: webSession.operatorId, },