Skip to content

Commit

Permalink
changing queues according to requests in PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto-butti committed May 17, 2024
1 parent 0e86198 commit 7a70914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ export default {
oauthToken: '',
spaceId: null,
region: '',
client: false,
client: null,

getClient () {
const { region } = creds.get()

try {
if (this.client === false) {
if (!this.client) {
this.client = new Storyblok(
{
accessToken: this.accessToken,
Expand Down

0 comments on commit 7a70914

Please sign in to comment.