diff --git a/app/page.tsx b/app/page.tsx index fabd88c..1c4b13f 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { getShares } from '@/actions/shares'; import { SharesList } from '@/components/SharesList'; -import { FinancialInstrument } from '@/typing'; +import { IFinancialInstrument } from '@/typing'; import styles from './page.module.scss'; @@ -9,7 +9,7 @@ const Page = async () => { const { data } = await getShares(); return (
- +
); };