What would be the correct format for this code in theme popup?
I have a GlobalContextsProvider:
return (
<ChakraProvider
{...chakraProviderProps}
theme={
chakraProviderProps && "theme" in chakraProviderProps
? chakraProviderProps.theme!
: undefined
}
>
{children}
</ChakraProvider>
);
Any help appreciate.