Skip to content

Commit

Permalink
Merge pull request #1088 from near/jh/add-blog-contributors
Browse files Browse the repository at this point in the history
fix: update blog to pass in contributors
  • Loading branch information
charleslavon committed Mar 26, 2024
2 parents 497805f + 85c361e commit 9c6a7a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pages/bosblog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const Blog: NextPageWithLayout = () => {
const router = useRouter();
const accountId = router.query.accountId;
const blockHeight = router.query.blockHeight;
const contributors = ['near', 'jacksonthedev.near'];

if (accountId && blockHeight) {
return (
Expand All @@ -37,6 +38,7 @@ const Blog: NextPageWithLayout = () => {
description: 'The latest on the Near Ecosystem',
}}
componentProps={{
contributors,
requestAuthentication,
}}
/>
Expand Down

0 comments on commit 9c6a7a9

Please sign in to comment.