From 3ae74a7f7dc7a51173236cd4fdfe959e1d4e32f3 Mon Sep 17 00:00:00 2001 From: Emanuel Almeida Date: Mon, 1 Jan 2001 00:00:00 +0000 Subject: [PATCH] fix: use type-only import for ReactNode (TypeScript verbatimModuleSyntax) --- src/auth/AuthWrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/AuthWrapper.tsx b/src/auth/AuthWrapper.tsx index 38be1cf..8ba8f67 100644 --- a/src/auth/AuthWrapper.tsx +++ b/src/auth/AuthWrapper.tsx @@ -1,5 +1,5 @@ import { useAuth } from 'react-oidc-context'; -import { ReactNode } from 'react'; +import type { ReactNode } from 'react'; interface AuthWrapperProps { children: ReactNode;