Skip to content

Commit fb35f89

Browse files
committed
fix: build error
1 parent b88b26d commit fb35f89

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/UserGuideLink.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ function UserGuideLink({ children, to, ...props }) {
2121
return (
2222
<BrowserOnly
2323
fallback={
24-
<Link {...props} to={buildVersionUrl('/user-guide/beta', to)}>
24+
// This seems to break if using a real url, so just use '#' as a placeholder for now
25+
<Link {...props} to={'#'}>
2526
{children}
2627
</Link>
2728
}

0 commit comments

Comments
 (0)