Skip to content

Commit

Permalink
fix missing latest_relese in updated.md
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Jun 7, 2024
1 parent b5295d8 commit 51d5cae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/altair-db/src/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function main() {

// execute the main function
main()
.catch(e => {
.catch((e) => {
console.error(e);
process.exit(1);
})
Expand Down
3 changes: 2 additions & 1 deletion packages/altair-docs/updated.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ sidebar: false
outline: false
layout: plain
---

<script setup>
import { useData } from 'vitepress'

const { theme, page, frontmatter } = useData()
import { data } from './.vitepress/plugins/github-metadata.data'
</script>

# Altair has been updated! - {{ data.latest_release.tag_name }}
# Altair has been updated! - {{ data?.latest_release?.tag_name }}

<Markdown :markdown="data.latest_release.body" />

0 comments on commit 51d5cae

Please sign in to comment.