diff --git a/software/backend/routes/account.routes.ts b/software/backend/routes/account.routes.ts index 262cde5..b7d2d14 100644 --- a/software/backend/routes/account.routes.ts +++ b/software/backend/routes/account.routes.ts @@ -88,16 +88,6 @@ account.post("/", async (req: Request, res: Response) => { .then(account => { // Status: 201 Created res.status(201).json(account) - - // Check exercise in table - Exercise.update( - { solved: true }, - { - where: { - nameEn: "Register" - } - } - ) }).catch(reason => { // Status: 409 Conflict res.status(409).json({ diff --git a/software/src/App.vue b/software/src/App.vue index 2611e43..e2d00f2 100644 --- a/software/src/App.vue +++ b/software/src/App.vue @@ -1,15 +1,14 @@