Skip to content

Commit

Permalink
small build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TateB committed Sep 24, 2024
1 parent 01d75f2 commit 1a179af
Show file tree
Hide file tree
Showing 33 changed files with 36 additions and 2,831 deletions.
2 changes: 1 addition & 1 deletion src/assets/verification/DynamicVerificationIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import dynamic from 'next/dynamic'

import { VerificationProtocol } from '../../transaction-flow/input/VerifyProfile/VerifyProfile-flow'
import { VerificationProtocol } from '@app/transaction/user/input/VerifyProfile/VerifyProfile-flow'

export const verificationIconTypes: {
[key in VerificationProtocol]: any
Expand Down
3 changes: 1 addition & 2 deletions src/components/@molecules/DogFood.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ import { Spacer } from '@app/components/@atoms/Spacer'
import { useAddressRecord } from '@app/hooks/ensjs/public/useAddressRecord'
import useDebouncedCallback from '@app/hooks/useDebouncedCallback'
import { createQueryKey } from '@app/hooks/useQueryOptions'

import { DisplayItems } from './TransactionDialogManager/DisplayItems'
import { DisplayItems } from '@app/transaction/components/DisplayItems'

const InnerContainer = styled.div(() => [
css`
Expand Down
6 changes: 2 additions & 4 deletions src/components/@molecules/FaucetBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ import {
import { useAccountSafely } from '@app/hooks/account/useAccountSafely'
import { useChainName } from '@app/hooks/chain/useChainName'
import useFaucet from '@app/hooks/useFaucet'

import { DisplayItems } from './TransactionDialogManager/DisplayItems'
import { DisplayItems } from '@app/transaction/components/DisplayItems'

const BannerWrapper = styled.div(
() => css`
Expand Down Expand Up @@ -72,8 +71,7 @@ const FaucetBanner = () => {
closeDialog()
}, [chainName, address])

if ((chainName !== 'goerli' && chainName !== 'sepolia') || !isReady || isLoading || !data)
return null
if (chainName !== 'sepolia' || !isReady || isLoading || !data) return null

const BannerComponent = (
<BannerWrapper>
Expand Down

This file was deleted.

Loading

0 comments on commit 1a179af

Please sign in to comment.