You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When displaying posts of type "Post," posts of type "Page" are also shown.
I changed onlyNewsletter: false to onlyPost: true to achieve the desired effect.
File:
notionic/pages/page/[page].js Line:18
Currently: const posts = await getAllPosts({ onlyNewsletter: false })
Should it be: const posts = await getAllPosts({ onlyPost: true })
The text was updated successfully, but these errors were encountered:
When displaying posts of type "Post," posts of type "Page" are also shown.
I changed
onlyNewsletter: false
toonlyPost: true
to achieve the desired effect.File:
notionic/pages/page/[page].js Line:18
Currently:
const posts = await getAllPosts({ onlyNewsletter: false })
Should it be:
const posts = await getAllPosts({ onlyPost: true })
The text was updated successfully, but these errors were encountered: