in my nextjs app, when the page loads there is a 0 in the top left corner for a split second. In that page, I get some data from Sanity CMS with getStaticProps and return the content.. I notice that even if I return a empty fraction the 0 appears.
return <>{Object?.keys(finalContent).length && <></>}</>;
If I return just the empty fraction without checking for
Object?.keys(finalContent).length &&
the 0 is gone
return <></>; // no 0 in the page
Anyone know how to remove it?