Skip to content

Commit 0e81b58

Browse files
committed
lint errors fixed
1 parent 85a49c4 commit 0e81b58

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

src/components/Tour.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,9 @@ export default defineComponent({
167167
await tourSetup();
168168
169169
// REMOVE ME
170-
const { removeTransactions, addTransactions } = useTransactionsStore();
170+
const { removeTransactions } = useTransactionsStore();
171171
removeTransactions([getFakeTx()]);
172+
// const { addTransactions } = useTransactionsStore();
172173
// addTransactions([getFakeTx()]);
173174
});
174175
@@ -237,7 +238,8 @@ export default defineComponent({
237238
// Dont allow user to interact with the page while it is loading
238239
// But allow to end it
239240
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)
241243
// const elements = Object.values(WalletHTMLElements).filter((e) => e);
242244
// if (isLoading.value || disconnected.value) {
243245
// elements.forEach((element) => {

src/lib/tour/onboarding/03_FirstTransactionStep.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { useTransactionsStore } from '@/stores/Transactions';
2-
import { TourOrigin, WalletHTMLElements } from '..';
2+
import { WalletHTMLElements } from '..';
33
import { OnboardingGetStepFnArgs, OnboardingTourStep, TourStep } from '../types';
44
import { getOnboardingTexts } from './OnboardingTourTexts';
55

6-
export function getFirstTransactionStep({ isSmallScreen, startedFrom }: OnboardingGetStepFnArgs): TourStep {
6+
export function getFirstTransactionStep({ isSmallScreen }: OnboardingGetStepFnArgs): TourStep {
77
const ui: TourStep['ui'] = {
88
fadedElements: [
99
WalletHTMLElements.SIDEBAR_TESTNET,

src/lib/tour/onboarding/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useWindowSize } from '@/composables/useWindowSize';
22
import { AccountType, useAccountStore } from '@/stores/Account';
33
import { SetupContext } from '@vue/composition-api';
4-
import { searchComponentByName, TourName, TourOrigin } from '..';
4+
import { searchComponentByName, TourOrigin } from '..';
55
import { OnboardingGetStepFnArgs, OnboardingTourStep, TourSteps } from '../types';
66
import { getFirstAddressStep } from './01_FirstAddressStep';
77
import { getTransactionListStep } from './02_TransactionListStep';

0 commit comments

Comments
 (0)