Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
samuveth committed Oct 27, 2023
1 parent 90ca5ac commit 87972ea
Show file tree
Hide file tree
Showing 3 changed files with 7,604 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/composables/useFollowSpace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,12 @@ export function useFollowSpace(spaceId: any = {}) {
} catch (e: any) {
loadingFollow.value = '';
console.error(e);
notify(['red', e?.error_description ? `Oops, ${e.error_description}` : t('notify.somethingWentWrong')]);
notify([
'red',
e?.error_description
? `Oops, ${e.error_description}`
: t('notify.somethingWentWrong')
]);
}
}

Expand Down
4 changes: 3 additions & 1 deletion src/views/PlaygroundView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,9 @@ function handleNetworkSelect(value) {
class="mt-3 overflow-x-auto"
style="border-color: red !important"
>
<pre class="!text-red whitespace-pre-wrap"> {{ strategyError }}</pre>
<pre class="whitespace-pre-wrap !text-red">
{{ strategyError }}</pre
>
</BaseBlock>
</BaseBlock>
<BaseBlock :title="$t('addresses')">
Expand Down
Loading

0 comments on commit 87972ea

Please sign in to comment.