Browse Source

change rendererErrorMessage

Naoki427 9 months ago
parent
commit
c25f57695f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      apps/app/src/client/components/Common/RendererErrorMessage.tsx

+ 1 - 2
apps/app/src/client/components/Common/RendererErrorMessage.tsx

@@ -11,8 +11,7 @@ export const RendererErrorMessage: React.FC = () => {
       }}
       }}
     >
     >
       ⚠️ <strong>Developer Warning:</strong>{' '}
       ⚠️ <strong>Developer Warning:</strong>{' '}
-      <code>rendererOptions</code> is <code>null</code>
-      . Make sure to call <code>useRendererConfig()</code> in your page component to initialize it properly.
+      Required renderer configuration is missing. Ensure <code>useRendererConfig()</code> is properly called in the component.
     </p>
     </p>
   );
   );
 };
 };