Skip to content

Commit

Permalink
chore: Remove intro modal from create pool (#4169)
Browse files Browse the repository at this point in the history
  • Loading branch information
garethfuller authored Sep 6, 2023
1 parent e3a9215 commit f89625b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/pages/pool/create.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,13 @@ import { useTokens } from '@/providers/tokens.provider';
import { lsGet, selectByAddress } from '@/lib/utils';
import useWeb3 from '@/services/web3/useWeb3';
import { StepState } from '@/types';
import IntroModal from '@/components/contextual/pages/pool/create/IntroModal.vue';
/**
* STATE
*/
const isUnknownTokenModalVisible = ref(false);
const isLoading = ref(true);
const showIntroModal = ref(true);
// const showIntroModal = ref(true);
/**
* COMPOSABLES
Expand Down Expand Up @@ -82,7 +81,7 @@ onBeforeMount(async () => {
if (previouslySavedState.createPoolTxHash) {
await retrievePoolAddress(previouslySavedState.createPoolTxHash);
}
showIntroModal.value = false;
// showIntroModal.value = false;
} else if (previouslySavedState === null) {
resetPoolCreationState();
}
Expand Down Expand Up @@ -289,10 +288,10 @@ watch(
:unknownTokens="unknownTokens"
@close="handleUnknownModalClose"
/>
<IntroModal
<!-- <IntroModal
v-if="showIntroModal && !hasRestoredFromSavedState"
@close="showIntroModal = false"
/>
/> -->
</div>
</template>

Expand Down

0 comments on commit f89625b

Please sign in to comment.