Skip to content

Commit

Permalink
Fix docsearch version metatag (#957)
Browse files Browse the repository at this point in the history
The search doesn't work because the scraper can't
find the url with `latest` anymore.

This PR changes the meta tag, after merging I will
update the crawler
  • Loading branch information
aspeddro authored Dec 30, 2024
1 parent bcaab31 commit 667aaea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Meta.res
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ let make = (
name="docsearch:version"
content={switch version {
| Some(Version(v)) => v
| _ => "latest"
| _ => Constants.versions.latest
}}
/>
</Head>
Expand Down

0 comments on commit 667aaea

Please sign in to comment.