Skip to content

Commit

Permalink
Fixed No Image issue and Nargo
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifechukwudaniel committed Oct 20, 2024
1 parent 9e94256 commit 50fbe6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/components/spotify/CardItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function CardItem({
return (
<Link href={`/${type}/${id}`} passHref>
<div className="transition duration-300 p-3 rounded cursor-pointer hover:bg-[#282828] bg-[#00000090] border-2 border-[#ffffff30]">
{images.length > 0 ? (
{images && images.length > 0 ? (
<img
src={images[0].url}
alt={altTitle}
Expand Down
2 changes: 1 addition & 1 deletion packages/noir/circuits/SpotifyVerifier/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
name = "SpotifyVerifier"
type = "bin"
authors = ["Ifechukwu Daniel"]
compiler_version = "0.10.5"
compiler_version = "0.33.0"

[dependencies]

0 comments on commit 50fbe6e

Please sign in to comment.