Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Oct 28, 2024
1 parent 9aeed69 commit f81e584
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions components/ui/NetworkSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
class="currency-box gap-2 p-3 basis-1/3 relative"
:class="{
'border-incognitee-green':
teerHover ||
(selectedNetwork === ChainId.IntegriteeKusama),
teerHover || selectedNetwork === ChainId.IntegriteeKusama,
}"
@mouseover="teerHover = true"
@mouseleave="teerHover = false"
Expand All @@ -28,8 +27,7 @@
class="currency-box gap-2 p-3 basis-1/3 relative"
:class="{
'border-incognitee-green':
pasHover ||
(selectedNetwork === ChainId.PaseoRelay),
pasHover || selectedNetwork === ChainId.PaseoRelay,
}"
@mouseover="pasHover = true"
@mouseleave="pasHover = false"
Expand Down Expand Up @@ -77,7 +75,9 @@ const props = defineProps({
});
// in case we need it somewhere
const isProd = computed(() => chainConfigs[props.selectedNetwork].faucetUrl === undefined);
const isProd = computed(
() => chainConfigs[props.selectedNetwork].faucetUrl === undefined,
);
// Hover-Zustände
const teerHover = ref(false);
Expand Down
3 changes: 2 additions & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,8 @@
</div>
<div
v-if="
accountStore.getDecimalBalanceTransferable(incogniteeSidechain) > INCOGNITEE_GTN_GUESS_FEE
accountStore.getDecimalBalanceTransferable(incogniteeSidechain) >
INCOGNITEE_GTN_GUESS_FEE
"
>
<form class="" @submit.prevent="submitGuessForm">
Expand Down

0 comments on commit f81e584

Please sign in to comment.