diff --git a/packages/apps/tools/src/components/Common/Layout/partials/Footer/Footer.tsx b/packages/apps/tools/src/components/Common/Layout/partials/Footer/Footer.tsx index ab8f72ed55..a561938ecf 100644 --- a/packages/apps/tools/src/components/Common/Layout/partials/Footer/Footer.tsx +++ b/packages/apps/tools/src/components/Common/Layout/partials/Footer/Footer.tsx @@ -1,9 +1,6 @@ import { NavFooter, SystemIcon, useModal } from '@kadena/react-ui'; -import { linkClass } from './styles.css'; - import { OptionsModal } from '@/components/Global/OptionsModal'; -import Link from 'next/link'; import { useTheme } from 'next-themes'; import useTranslation from 'next-translate/useTranslation'; import React, { FC } from 'react'; @@ -50,19 +47,8 @@ const FooterWrapper: FC = () => { {links.map((item, index) => { return ( - - {item.href !== undefined ? ( - - {item.title} - - ) : ( - {item.title} - )} + + {item.title} ); })}