Skip to content

Commit

Permalink
🩹 ish: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Bear29ers committed Jun 30, 2024
1 parent 712c40d commit c89aa7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/gallery/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ const Gallery: NextPage = () => {

const loadMediaData = () => {
fetchMedia()
.then((data) => {
.then((data: Media) => {
setMediaData(data);
console.log('data: ', mediaData);
})
.catch((err) => {
// eslint-disable-next-line no-console
console.error(err);
});
};
Expand Down

0 comments on commit c89aa7d

Please sign in to comment.