We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19c6e83 commit 7483683Copy full SHA for 7483683
src/stores/team.ts
@@ -21,7 +21,7 @@ export const useTeamStore = defineStore("team", () => {
21
return error.response;
22
});
23
24
- if (response.status !== 200) {
+ if (response?.status !== 200) {
25
return;
26
}
27
0 commit comments