Skip to content

Commit a4400db

Browse files
committed
hotfix: use current
1 parent 6c49a09 commit a4400db

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

apps/site/components/withDownloadSection.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ const WithDownloadSection: FC<WithDownloadSectionProps> = ({
3636
.concat(snippets);
3737

3838
// Decides which initial release to use based on the current pathname
39-
const initialRelease = pathname.endsWith('/current')
40-
? 'Current'
41-
: 'Active LTS';
39+
const initialRelease = 'Current';
4240

4341
return (
4442
<WithNodeRelease status={initialRelease}>

0 commit comments

Comments
 (0)