Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
brianlovin committed Mar 15, 2020
1 parent f4bdc07 commit 105a979
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions scripts/readme.ts
Expand Up @@ -8,6 +8,4 @@ for (const s of supporters) {
? ` [@${s.twitterUsername}](https://twitter.com/${s.twitterUsername})`
: ''
}\n`;
}

console.log(str);
}
4 changes: 2 additions & 2 deletions src/pages/episodes/[id].tsx
Expand Up @@ -12,14 +12,14 @@ const Content = styled.div`
grid-auto-rows: min-content;
`

function Episode({ id }) {
function Episode({ id, episode }) {
return (
<PageWrapper>
<EpisodesPageGrid>
<EpisodesSidebar />

<Content>
<EpisodeContent id={id} />
<EpisodeContent id={id} episode={episode} />
</Content>
</EpisodesPageGrid>
</PageWrapper>
Expand Down

0 comments on commit 105a979

Please sign in to comment.