From 6faa13c736e2edeb2665e5fe630741b7221cb948 Mon Sep 17 00:00:00 2001
From: Kartheek Palla <palla.kartheekreddy@gmail.com>
Date: Wed, 10 Nov 2021 18:41:29 +0530
Subject: [PATCH] Issue #SB-000 fix: syntax error issue fix

---
 src/helpers/googleOauthHelper.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/helpers/googleOauthHelper.js b/src/helpers/googleOauthHelper.js
index a4519cd..977ce8b 100644
--- a/src/helpers/googleOauthHelper.js
+++ b/src/helpers/googleOauthHelper.js
@@ -6,7 +6,9 @@ const path = require('path');
 const envVariables = require("../envVariables");
 
 class GoogleOauth {
-  auth = null;
+  constructor() {
+    this.auth = null;
+  }
   constructor() {
     this.auth = new google.auth.GoogleAuth({
       credentials: {
-- 
GitLab