I have a Problem with Chakra ui for ChakraProviderProps

hi Everyone I have a Problem with Chakra ui for ChakraProviderProps it Demand " Property ‘value’ is missing in type"
some one Have idea it Fix it

What version of Chakra you are using?

If its the latest (Last updated was on Oct 2024) then the <ChakraProvider> has been replaced with just <Provider>

import { Provider } from "./components/ui/provider.tsx";
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App.tsx";

createRoot(document.getElementById("root")!).render(
	<StrictMode>
		<Provider>
			<App />
		</Provider>
	</StrictMode>,
);

1 Like

thanks I just get the Update