Skip to content

Commit

Permalink
fix: remove type
Browse files Browse the repository at this point in the history
  • Loading branch information
BATMAH69 committed Sep 26, 2024
1 parent ed7c68d commit 4bb4cb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shared/ui/uiProvider/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FC, PropsWithChildren, ReactNode } from 'react';
import { FC, PropsWithChildren } from 'react';
import { Helmet, HelmetProvider } from 'react-helmet-async';
import { CookieThemeProvider } from '@lidofinance/lido-ui';

Expand All @@ -16,7 +16,7 @@ font-family: Manrope, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}`;

export const UiProvider: FC<PropsWithChildren<ReactNode>> = ({ children }) => {
export const UiProvider: FC<PropsWithChildren> = ({ children }) => {
return (
<HelmetProvider>
<CookieThemeProvider>
Expand Down

0 comments on commit 4bb4cb6

Please sign in to comment.