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.
1 parent b5df8b6 commit 8fcb0b9Copy full SHA for 8fcb0b9
src/layouts/Static.tsx
@@ -117,13 +117,15 @@ export const StaticLayout = ({
117
<>
118
<Breadcrumbs slug={slug} mb="8" />
119
120
- <Text
121
- color="text200"
122
- dir={isLangRightToLeft(locale as Lang) ? "rtl" : "ltr"}
123
- >
124
- <Translation id="page-last-updated" />:{" "}
125
- {lastEditLocaleTimestamp}
126
- </Text>
+ {slug !== "/whitepaper" && !asPath.includes("/whitepaper") && (
+ <Text
+ color="text200"
+ dir={isLangRightToLeft(locale as Lang) ? "rtl" : "ltr"}
+ >
+ <Translation id="page-last-updated" />:{" "}
+ {lastEditLocaleTimestamp}
127
+ </Text>
128
+ )}
129
</>
130
)}
131
0 commit comments