diff --git a/code/frameworks/nextjs/src/routing/app-router-provider-mock.tsx b/code/frameworks/nextjs/src/routing/app-router-provider-mock.tsx index 38682dbcdaa6..421dc48ed9fe 100644 --- a/code/frameworks/nextjs/src/routing/app-router-provider-mock.tsx +++ b/code/frameworks/nextjs/src/routing/app-router-provider-mock.tsx @@ -1,6 +1,6 @@ import React from 'react'; // The mock is used for Next.js < 13, where the AppRouterProvider doesn't exist -export const AppRouterProvider: React.FC = ({ children }) => { +export const AppRouterProvider: React.FC> = ({ children }) => { return <>{children}; };