Skip to content

Commit

Permalink
fix broken console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Dec 17, 2024
1 parent 9ef9826 commit a80758e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/releases.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const shortcodes = {
h3: headline3,
}

const Releases = ({ data }) => (
console.log(data.allTerminusReleasesJson.edges);
const Releases = ({ data }) => {
console.log(data.allTerminusReleasesJson.edges)

return(
<>
Expand All @@ -31,9 +31,9 @@ const Releases = ({ data }) => (
</div>
)
})}
</>
</>
);
);
};

export default props => (
<StaticQuery
Expand Down

0 comments on commit a80758e

Please sign in to comment.