From c4e51828d69fd11cf1992a63e1ec2ce57c9f4bfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Longoni?= Date: Thu, 28 Sep 2023 15:04:08 -0300 Subject: [PATCH] img uppercase --- src/constants/images.ts | 2 +- src/pages/index.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 }} />