Plasmic error: PLASMIC: Failed to load

Hello, I am getting an error Error: PLASMIC: Failed to load comp__g3fTgwyzBH5.js: Error: Unknown module chunk-CTAHUWZ7.js on a page where I use a component from Plasmic.

My next.js page structure:

export const getStaticProps: GetStaticProps = async () => {
  try {
    const generalFooterPlasmicData = await PLASMIC.fetchComponentData(
      'GeneralFooter',
    );

    return {
      props: {
        generalFooterPlasmicData,
      },
    };
  } catch (error) {
    return {
      props: {},
    };
  }
};

interface Props {
  generalFooterPlasmicData?: ComponentRenderData;
}

const PageName: FC<Props> = ({ generalFooterPlasmicData }) => {

  const compMeta = generalFooterPlasmicData?.entryCompMetas[0];

  return (
    <>
      {compMeta && (
        <PlasmicRootProvider
          loader={PLASMIC}
          prefetchedData={generalFooterPlasmicData}
        >
          <PlasmicComponent component={compMeta.displayName} />
        </PlasmicRootProvider>
      )}
    </>
  );
};

export default PageName;

Hi. Could you provide the version of your @plasmicapp/loader-nextjs? Can this issue be seen on a production page? If so, could you share it?

@plasmicapp/loader-nextjs - 1.0.369. I will send you a link.

Could you try upgrading your package and publishing a new version of your project?