Skip to content

Commit d3bd266

Browse files
committed
feat: change Nav structure for release notes
1 parent bb6ef04 commit d3bd266

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/templates/releaseNoteLandingPage.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { TYPES } from '../utils/constants';
1010
import MDXContainer from '../components/MDXContainer';
1111
import { getTitle } from '../utils/releaseNotes';
1212

13-
1413
const ReleaseNoteLandingPage = ({ data, pageContext, location }) => {
1514
const { slug, disableSwiftype, currentPage } = pageContext;
1615
const {
@@ -21,7 +20,7 @@ const ReleaseNoteLandingPage = ({ data, pageContext, location }) => {
2120
} = data;
2221

2322
const now = useMemo(() => new Date(), []);
24-
23+
2524
const sortedPosts = posts.slice().sort((a, b) => {
2625
// Sort by releaseDate descending
2726
return (

0 commit comments

Comments
 (0)