From 0ba205160c5f883939b3d785a7f62bf3f94e417b Mon Sep 17 00:00:00 2001 From: Rohan Barsagade Date: Mon, 17 Jun 2024 13:18:29 +0530 Subject: [PATCH] fix: set cookie name to 'heimdall' --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 65d3041..0dcd50a 100644 --- a/main.go +++ b/main.go @@ -282,7 +282,7 @@ func handleVerifyOtp(res http.ResponseWriter, req *http.Request) { } cookie := http.Cookie{ - Name: "jwt", + Name: "heimdall", Value: tokenString, Expires: expiryTime, HttpOnly: true,