File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -167,8 +167,9 @@ export default defineComponent({
167
167
await tourSetup ();
168
168
169
169
// REMOVE ME
170
- const { removeTransactions, addTransactions } = useTransactionsStore ();
170
+ const { removeTransactions } = useTransactionsStore ();
171
171
removeTransactions ([getFakeTx ()]);
172
+ // const { addTransactions } = useTransactionsStore();
172
173
// addTransactions([getFakeTx()]);
173
174
});
174
175
@@ -237,7 +238,8 @@ export default defineComponent({
237
238
// Dont allow user to interact with the page while it is loading
238
239
// But allow to end it
239
240
watch ([isLoading , disconnected ], async () => {
240
- // TODO Avoid interaction with any of the elements when loading except tour elements (bar, manager and tooltip)
241
+ // TODO
242
+ // Avoid interaction with any of the elements when loading except tour elements (bar, manager and tooltip)
241
243
// const elements = Object.values(WalletHTMLElements).filter((e) => e);
242
244
// if (isLoading.value || disconnected.value) {
243
245
// elements.forEach((element) => {
Original file line number Diff line number Diff line change 1
1
import { useTransactionsStore } from '@/stores/Transactions' ;
2
- import { TourOrigin , WalletHTMLElements } from '..' ;
2
+ import { WalletHTMLElements } from '..' ;
3
3
import { OnboardingGetStepFnArgs , OnboardingTourStep , TourStep } from '../types' ;
4
4
import { getOnboardingTexts } from './OnboardingTourTexts' ;
5
5
6
- export function getFirstTransactionStep ( { isSmallScreen, startedFrom } : OnboardingGetStepFnArgs ) : TourStep {
6
+ export function getFirstTransactionStep ( { isSmallScreen } : OnboardingGetStepFnArgs ) : TourStep {
7
7
const ui : TourStep [ 'ui' ] = {
8
8
fadedElements : [
9
9
WalletHTMLElements . SIDEBAR_TESTNET ,
Original file line number Diff line number Diff line change 1
1
import { useWindowSize } from '@/composables/useWindowSize' ;
2
2
import { AccountType , useAccountStore } from '@/stores/Account' ;
3
3
import { SetupContext } from '@vue/composition-api' ;
4
- import { searchComponentByName , TourName , TourOrigin } from '..' ;
4
+ import { searchComponentByName , TourOrigin } from '..' ;
5
5
import { OnboardingGetStepFnArgs , OnboardingTourStep , TourSteps } from '../types' ;
6
6
import { getFirstAddressStep } from './01_FirstAddressStep' ;
7
7
import { getTransactionListStep } from './02_TransactionListStep' ;
You can’t perform that action at this time.
0 commit comments