Skip to content

Commit

Permalink
Fix session task key
Browse files Browse the repository at this point in the history
  • Loading branch information
LauraBeatris committed Feb 18, 2025
1 parent 639e7f8 commit 573b5d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/types/src/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ export interface SessionResource extends ClerkResource {
lastActiveAt: Date;
actor: ActJWTClaim | null;
tasks: Array<SessionTask> | null;
hasPendingTasks: boolean;
user: UserResource | null;
publicUserData: PublicUserData;
end: () => Promise<SessionResource>;
Expand Down Expand Up @@ -197,7 +198,7 @@ export interface PublicUserData {
}

export interface SessionTask {
key: 'orgs';
key: 'org';
}

export type GetTokenOptions = {
Expand Down

0 comments on commit 573b5d5

Please sign in to comment.