Skip to content

Commit

Permalink
removed console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
r2hu1 committed Aug 24, 2024
1 parent 6b91f8e commit 64a85cf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion app/(root)/album/_components/Album.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export default function Album({ id }) {
.then(res => res.json())
.then(data => {
setData(data.data);
console.log(data.data);
});
};
useEffect(() => {
Expand Down
1 change: 0 additions & 1 deletion app/(root)/search/_components/Search.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export default function Search({ params }) {
setArtists(data.data.artists.results);
setSongs(data.data.songs.results);
setAlbums(data.data.albums.results)
console.log(data.data.albums.results)
}
useEffect(() => {
getSongs();
Expand Down

0 comments on commit 64a85cf

Please sign in to comment.