Skip to content

Commit

Permalink
Add todo on token implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
RickyRoller committed Mar 6, 2025
1 parent 318ec64 commit e4db0a8
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/apps/external-app/message-handlers/authenticateHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,8 @@ export const authenticateHandler = (event: MessageEvent<AuthenticateMessage>) =>
return;
}

const token =
document.cookie
.split('; ')
.find((row) => row.startsWith('zos_access_token='))
?.split('=')[1] || '';
// To implement getting user token
const token = '';

const response: AuthenticateResponseMessage = {
type: ZAppMessageType.Authenticate,
Expand Down

0 comments on commit e4db0a8

Please sign in to comment.