Skip to content

Commit

Permalink
small bug, was unsetting token instead of active workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
deepansh96 committed Dec 3, 2024
1 parent 21b88ff commit 046cee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ export default {
organization.shortcode == this.activeWorkspace || this.activeWorkspace == ""
);
});
if (!isUserInWorkspace) this.unsetAccessToken();
if (!isUserInWorkspace) this.unsetActiveWorkspace();
let createPlioResponse = await PlioAPIService.createPlio();
this.$Progress.finish();
if (createPlioResponse.status == 201) {
Expand Down

0 comments on commit 046cee3

Please sign in to comment.