diff --git a/src/constants/images.ts b/src/constants/images.ts index ec1bc2b9..63db349e 100644 --- a/src/constants/images.ts +++ b/src/constants/images.ts @@ -7,7 +7,7 @@ export const GIF_COMPILING = '/assets/compiling.gif' export const SVG_SUCCESSFULLY = '/assets/successfully.svg' export const SVG_AWESOME = '/assets/auto_awesome.svg' export const CHAINS_IMG_PATH = `/assets/chains/` -export const CustomContract = '/assets/custom-contract.png' +export const CUSTOM_CONTRACT = '/assets/custom-contract.png' export const TOKEN_PATHS: Record = { psp22: '/assets/token.png', diff --git a/src/pages/index.tsx b/src/pages/index.tsx index ae9efe00..cb0148c9 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -2,7 +2,7 @@ import Link from 'next/link' import { Stack, Typography } from '@mui/material' import { HomeButton, HomeButtonCustom } from '@/components' -import { CustomContract, ROUTES, TOKEN_PATHS } from '@/constants/index' +import { CUSTOM_CONTRACT, ROUTES, TOKEN_PATHS } from '@/constants/index' import { TokenType } from '@/domain' import { useNetworkAccountsContext } from '@/context/NetworkAccountsContext' import { ContractsTableWidget } from '@/view/HomeView/ContractsTableWidget' @@ -72,7 +72,7 @@ function Home() { href={`/`} title="CUSTOM CONTRACT" subtitle="Upload a new contract code" - imgPath={CustomContract} + imgPath={CUSTOM_CONTRACT} imgProps={{ width: 60, height: 60 }} />