Next.js Discord

Discord Forum

Linking Issue

Unanswered
Polish posted this in #help-forum
Open in Discord
PolishOP
How come only the first link is clickable but not the rest?

          <div className="flex justify-between">
          {IRCLinks.map((items, i) => (
            <React.Fragment key={i}>
              <Link href={items.href} target="_blank"><img src={items.imgsrc} alt={items.imgsrc} width="61" height="105" className='space-links' /></Link>
              {i < IRCLinks.length - 1 && <div className="verticalLine"></div>}
            </React.Fragment>
          ))}
          </div>

0 Replies