From 0e19d74a41d83659d1a99f74d84f1b5cf14d0b51 Mon Sep 17 00:00:00 2001 From: Dawid Chudzicki Date: Wed, 15 May 2024 14:21:35 +0200 Subject: [PATCH] fix: styling --- components/appContext.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/appContext.tsx b/components/appContext.tsx index 9ad3333..01295f2 100644 --- a/components/appContext.tsx +++ b/components/appContext.tsx @@ -13,7 +13,7 @@ export interface AppContextType { } const AppContext = createContext({ - favorites: [], + favorites: [], // eslint-disable-next-line @typescript-eslint/no-empty-function handleFavorite: () => {}, }); @@ -48,5 +48,3 @@ export function AppContextProvider({ export function useAppContext() { return useContext(AppContext); } - -//elo zelo