Fix website build and update action

This commit is contained in:
Daniel Lautzenheiser
2022-09-30 11:13:22 -04:00
parent f406d2055b
commit 616e72f40a
2 changed files with 17 additions and 5 deletions

View File

@ -18,7 +18,7 @@ function WhatsNew({ updates }) {
<Container>
<Grid as="ol" cols={3}>
{updates.slice(0, 3).map((item, idx) => (
<Release {...item} versionPrevious={updates[idx + 1].version} key={item.version} />
<Release {...item} versionPrevious={updates[idx + 1]?.version} key={item?.version} />
))}
</Grid>
</Container>