diff --git a/src/components/OutDatedCallOut.astro b/src/components/OutDatedCallOut.astro
index 6fff5aa..32a6743 100644
--- a/src/components/OutDatedCallOut.astro
+++ b/src/components/OutDatedCallOut.astro
@@ -1,22 +1,22 @@
---
import Callout from "./shortcodes/Callout.astro"
-import { siteConfig} from "../config";
+import { siteConfig } from "../config";
const daysBeforeOutdated = siteConfig.outdatedCallout.daysBeforeOutdated || 90;
-const { lastUpdatedAt = '' } = Astro.props
+const { lastUpdatedAt = '', noscript = false } = Astro.props
const lastUpdated = new Date(lastUpdatedAt).getTime()
const dateNow = new Date().getTime()
const dateDelta = dateNow - lastUpdated
const Day = 1000 * 60 * 60 * 24
const daysDelta = Math.round(dateDelta / Day)
---
-{ ( lastUpdatedAt && daysDelta >= daysBeforeOutdated ) &&
+{ ( !noscript && daysDelta >= daysBeforeOutdated ) &&
{entry.data.summary}
} -