Skip to content

Commit

Permalink
fix: Network type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
matstyler committed Aug 6, 2024
1 parent 8ddb043 commit a6f0450
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion wallets/metamask/src/playwright/MetaMask.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { BrowserContext, Page } from '@playwright/test'
import { SettingsSidebarMenus } from '../selectors/pages/HomePage/settings'
import { MetaMaskAbstract } from '../type/MetaMaskAbstract'
import type { Network } from '../type/Network'
import { CrashPage, HomePage, LockPage, NotificationPage, OnboardingPage } from './pages'
import type { Network } from './pages/HomePage/actions'
import type { GasSetting } from './pages/NotificationPage/actions'
import { SettingsPage } from './pages/SettingsPage/page'

Expand Down
2 changes: 1 addition & 1 deletion wallets/metamask/src/playwright/pages/HomePage/page.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { Page } from '@playwright/test'
import Selectors from '../../../selectors/pages/HomePage'
import type { SettingsSidebarMenus } from '../../../selectors/pages/HomePage/settings'
import type { Network } from '../../../type/Network'
import {
addNetwork,
addNewAccount,
Expand All @@ -14,7 +15,6 @@ import {
toggleShowTestNetworks,
transactionDetails
} from './actions'
import type { Network } from './actions'

export class HomePage {
static readonly selectors = Selectors
Expand Down
2 changes: 1 addition & 1 deletion wallets/metamask/src/type/MetaMaskAbstract.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Network } from '../playwright/pages/HomePage/actions'
import type { GasSetting } from '../playwright/pages/NotificationPage/actions'
import { SettingsSidebarMenus } from '../selectors/pages/HomePage/settings'
import type { Network } from './Network'

export abstract class MetaMaskAbstract {
/**
Expand Down

0 comments on commit a6f0450

Please sign in to comment.