From 1fd3110ee293b8d822eeba62868a35516258806e Mon Sep 17 00:00:00 2001 From: kj1352 Date: Thu, 28 Oct 2021 13:07:21 +0530 Subject: [PATCH] removed unwanted semicolon --- src/user-profile/profile-routes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user-profile/profile-routes.ts b/src/user-profile/profile-routes.ts index c6ebb91..992c2ce 100644 --- a/src/user-profile/profile-routes.ts +++ b/src/user-profile/profile-routes.ts @@ -64,7 +64,7 @@ userProfileRoutes.get('/deep-copy/', jwtAuthentication, async (request, response }); } else { allDeepCategories.push({ - ...allCategories[i]; + ...allCategories[i] }) } }