🐛 Cache le module d'intégrations pour les simulateurs privés

pull/1538/head
Maxime Quandalle 2021-05-07 14:16:24 +02:00
parent c469b43258
commit b898f573ee
1 changed files with 5 additions and 1 deletions

View File

@ -23,6 +23,7 @@ export default function PageData({
tooltip,
description,
iframePath,
private: privateIframe,
component: Component,
seoExplanations,
nextSteps,
@ -88,7 +89,10 @@ export default function PageData({
{!inIframe && (
<>
{seoExplanations}
<NextSteps iframePath={iframePath} nextSteps={nextSteps} />
<NextSteps
iframePath={privateIframe ? undefined : iframePath}
nextSteps={nextSteps}
/>
</>
)}
</ThemeColorsProvider>