summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHATEC\SPVDEV001 <tri.susilo@altama.co.id>2023-09-06 09:14:32 +0700
committerHATEC\SPVDEV001 <tri.susilo@altama.co.id>2023-09-06 09:14:32 +0700
commit0d343c7a9b95dda7e324053c3d6a39d0fd2ecf8c (patch)
tree7cffd6a4100771daea1b4eb0c3905bf68d9a824a /src
parente9ddb20da7114af4d9777e466e033db11536921d (diff)
bugs fixing redirect logout
Diffstat (limited to 'src')
-rw-r--r--src/core/utils/auth.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/utils/auth.js b/src/core/utils/auth.js
index 03b20ae2..a7244747 100644
--- a/src/core/utils/auth.js
+++ b/src/core/utils/auth.js
@@ -29,7 +29,7 @@ const setAuth = (user) => {
* @returns {boolean} - Returns `true`.
*/
const deleteAuth = async() => {
- await signOut()
+ // await signOut()
deleteCookie('auth')
return true
}