diff --git a/src/modules/auth/controllers/googleCallback.controller.ts b/src/modules/auth/controllers/googleCallback.controller.ts index eee3665..da9b468 100644 --- a/src/modules/auth/controllers/googleCallback.controller.ts +++ b/src/modules/auth/controllers/googleCallback.controller.ts @@ -7,6 +7,7 @@ import { getUserHeaderInformation } from "../../../helpers/http/userHeader/getUs export const googleCallbackController = async ( ctx: Context & { query: { code: string; state: string } } ) => { + return ctx; try { const userHeaderInfo = getUserHeaderInformation(ctx);