Skip to content

Commit

Permalink
Add missing properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
kumanoayumi committed Oct 9, 2024
1 parent 0650ca7 commit 9903b0b
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ const commonPostData = (postId: number) => ({
categories: ['Technology', 'Business'],
body: {
type: 'mdx',
content: "No-code platforms are revolutionizing the way we think about software development. By enabling non-programmers to build applications, they are democratizing access to technology and fostering innovation across various sectors."
code: '',
content: "No-code platforms are revolutionizing the way we think about software development. By enabling non-programmers to build applications, they are democratizing access to technology and fostering innovation across various sectors.",
raw: '',
html: ''
},
lang: 'en',
slug: `dummy-${postId}`,
Expand All @@ -35,11 +38,11 @@ const meta = {
},
type: 'Post' as const,
body: {
...commonPostData(i + 1).body,
raw: '',
html: '',
...commonPostData(i + 1).body
}
})),
}))
}
} satisfies Meta<typeof TopCards>

Expand Down

0 comments on commit 9903b0b

Please sign in to comment.