We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 667c9c8 + 65cb88a commit 2542880Copy full SHA for 2542880
src/layouts/Static.tsx
@@ -111,13 +111,15 @@ export const StaticLayout = ({
111
<Stack className="gap-8">
112
<Breadcrumbs slug={slug} />
113
114
- <p
115
- className="text-body-medium"
116
- dir={isLangRightToLeft(locale as Lang) ? "rtl" : "ltr"}
117
- >
118
- <Translation id="page-last-updated" />:{" "}
119
- {lastEditLocaleTimestamp}
120
- </p>
+ {!asPath.includes("/whitepaper") && (
+ <p
+ className="text-body-medium"
+ dir={isLangRightToLeft(locale as Lang) ? "rtl" : "ltr"}
+ >
+ <Translation id="page-last-updated" />:{" "}
+ {lastEditLocaleTimestamp}
121
+ </p>
122
+ )}
123
</Stack>
124
)}
125
0 commit comments