Fix entities Page not rendering

This commit is contained in:
José Marques Lima
2025-01-27 22:06:34 +00:00
parent c98af863c3
commit 16b959fb7a

View File

@@ -64,7 +64,7 @@ export default function App({ Component, pageProps }: AppProps) {
{loading ? (
<UserProfileSkeleton />
) : (
<Component {...pageProps} entities={entities} />
<Component {...pageProps} />
)}
</Layout>
);