Shane Gammell pfp
Shane Gammell

@shaneleexcx

Ensure Context Provider Wrapping: Make sure that the component (or its parents) calling useMinimizedMiniApp is wrapped inside the <MinimizedMiniAppProvider> in your app’s component tree. Example: import { MinimizedMiniAppProvider } from '.../MinimizedMiniAppContext'; export default function App() { return ( <MinimizedMiniAppProvider> {/* Your app components */} </MinimizedMiniAppProvider> ); }Check App Structure: If you recently refactored components or moved code, some components may no longer be descendants of the provider. Double-check the placement.
0 reply
0 recast
0 reaction