Skip to content

Commit

Permalink
chore: modify configuration for getAsyncData fn
Browse files Browse the repository at this point in the history
  • Loading branch information
MoumitaM committed Mar 27, 2024
1 parent ffa79ee commit a59c8d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1435,6 +1435,7 @@ describe('User session manager', () => {
}),
sendRawData: true,
},
isRawResponse: true,
callback: expect.any(Function),
});
});
Expand Down Expand Up @@ -1465,6 +1466,7 @@ describe('User session manager', () => {
}),
sendRawData: true,
},
isRawResponse: true,
callback: expect.any(Function),
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ class UserSessionManager implements IUserSessionManager {
}) as string,
sendRawData: true,
},
isRawResponse: true,
callback: (res, details) => {
if (details?.xhr?.status === 200) {
const cookieValue = store?.get(key);
Expand Down

0 comments on commit a59c8d0

Please sign in to comment.