1
+ import { Chain } from '@streamr/config'
1
2
import React , { useMemo } from 'react'
2
3
import { useNavigate } from 'react-router-dom'
3
4
import styled , { css } from 'styled-components'
@@ -21,18 +22,17 @@ import { deleteProject } from '~/services/projects'
21
22
import { DetailsPageHeader } from '~/shared/components/DetailsPageHeader'
22
23
import LoadingIndicator from '~/shared/components/LoadingIndicator'
23
24
import useIsMounted from '~/shared/hooks/useIsMounted'
25
+ import { ProjectType , SalePoint } from '~/shared/types'
26
+ import { ProjectDraft } from '~/stores/projectDraft'
27
+ import { SalePointsPayload } from '~/types/projects'
28
+ import { formatChainName } from '~/utils'
24
29
import {
25
30
getChainConfig ,
26
31
getChainConfigExtension ,
27
32
useCurrentChainId ,
28
33
} from '~/utils/chains'
29
- import { ProjectType , SalePoint } from '~/shared/types'
30
- import { ProjectDraft } from '~/stores/projectDraft'
31
- import { Chain } from '~/types'
32
- import { SalePointsPayload } from '~/types/projects'
33
- import { formatChainName } from '~/utils'
34
- import { toastedOperation } from '~/utils/toastedOperation'
35
34
import { Route as R , routeOptions } from '~/utils/routes'
35
+ import { toastedOperation } from '~/utils/toastedOperation'
36
36
import DataUnionFee from './DataUnionFee'
37
37
import DataUnionPayment from './DataUnionPayment'
38
38
import EditorHero from './EditorHero'
0 commit comments