Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
KhafraDev committed Jun 26, 2024
1 parent d362a40 commit 1e0f9a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function parseDocumentCookie () {
if (!item.includes('=')) return obj

const split = item.split('=')
obj[split[0]] = split[1]
obj[split[0].trim()] = split[1].trim()
return obj
}, {} as Record<string, string>)
}

0 comments on commit 1e0f9a5

Please sign in to comment.