Skip to content

Commit

Permalink
fix: no mirrors found bug
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Aug 29, 2022
1 parent bddd065 commit a0a7b59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/datalayer/persistance.js
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,9 @@ const getMirrors = async (storeId) => {
}

logger.error(`FAILED GETTING MIRRORS FOR ${storeId}`);
return false;
return [];
} catch (error) {
return false;
return [];
}
};

Expand Down

0 comments on commit a0a7b59

Please sign in to comment.