Skip to content

Commit

Permalink
feat(setup): be more lenient with repsonse status code
Browse files Browse the repository at this point in the history
  • Loading branch information
beheh committed Aug 22, 2024
1 parent 5cbf3d0 commit fda7750
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/config/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ const updateConnectionStatus =
});
switch (response.status) {
case 200:
case 201:
case 204:
return dispatch(
actionCreators.setConnectionStatus(ConnectionStatus.READY),
);
Expand Down

0 comments on commit fda7750

Please sign in to comment.