diff --git a/shared/src/bundles/users/types/user-sign-in-response-dto.type.ts b/shared/src/bundles/users/types/user-sign-in-response-dto.type.ts index c8cd55dcd..27acff435 100644 --- a/shared/src/bundles/users/types/user-sign-in-response-dto.type.ts +++ b/shared/src/bundles/users/types/user-sign-in-response-dto.type.ts @@ -1,7 +1,7 @@ type UserSignInResponseDto = { id: number; email: string; - token: string; + token?: string; }; export { type UserSignInResponseDto };