Skip to content

Commit

Permalink
fix: interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ialexanderbrito committed Apr 12, 2022
1 parent 4c89a3a commit 2050665
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/types/IContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface UserMetadata {
picture: string;
provider_id: string;
ocupacao: string;
schedules: Schedule[];
schedules: any;
sub: string;
}

Expand Down Expand Up @@ -67,9 +67,9 @@ export interface Identity {
}

export interface Schedule {
from?: string | undefined;
to?: string | undefined;
week_day?: string | undefined;
from?: string;
to?: string;
week_day?: string;
}

export interface User {
Expand Down

0 comments on commit 2050665

Please sign in to comment.