This is an automated email from the ASF dual-hosted git repository.
visortelle pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git
The following commit(s) were added to refs/heads/main by this push:
new e74839aba573 Fix - recommended version banner shows same version two
times (#806)
e74839aba573 is described below
commit e74839aba5733dadb55af9823138a2ee32a858a2
Author: Kiryl Valkovich <[email protected]>
AuthorDate: Thu Feb 29 23:24:19 2024 +0400
Fix - recommended version banner shows same version two times (#806)
---
src/theme/DocVersionBanner/index.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/theme/DocVersionBanner/index.js
b/src/theme/DocVersionBanner/index.js
index ff19535efc0f..f8c77655df3c 100644
--- a/src/theme/DocVersionBanner/index.js
+++ b/src/theme/DocVersionBanner/index.js
@@ -101,7 +101,7 @@ function LatestVersionSuggestionLabel({ versionLabel, to,
onClick }) {
),
}}
>
- {"We recommend you use the {latestVersionLink} ({versionLabel})."}
+ {"We recommend you use the {latestVersionLink}."}
</Translate>
);
}