From 976d4eea633e681f4faf1d61bc31f419ca260b8c Mon Sep 17 00:00:00 2001 From: Sergey Uchaev Date: Thu, 11 Jul 2024 20:05:13 +0300 Subject: [PATCH] hot fix: add typing --- app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 (
- +
); };