Skip to content

Commit

Permalink
fix: propic anchor disabled on coming soon
Browse files Browse the repository at this point in the history
  • Loading branch information
habby1337 committed Mar 29, 2024
1 parent c66bc03 commit f82f949
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Components/Agenda.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,11 @@ const TalkCard = ({
)}
</div>
<div id="participants" className="flex items-center justify-end w-20">
<a href={agendaTalk.talk?.url || "#"} className="" target="_blank">
<a
href={agendaTalk.talk?.url || "#"}
className={`${name === PLACEHOLDER_NAME && "pointer-events-none"}`}
target="_blank"
>
{/* <AnimatedTooltip items={talkers} /> */}
{profileImg && (
<img
Expand Down

0 comments on commit f82f949

Please sign in to comment.