Skip to content

Commit b7d36ca

Browse files
committed
fix: conditionally render job user handle in bounties_live component
- Updated the BountiesLive component to only display the job section if the user handle is present.
1 parent fd6db67 commit b7d36ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/algora_web/live/bounties_live.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ defmodule AlgoraWeb.BountiesLive do
758758
assigns = assign(assigns, :job, assigns.event.item)
759759

760760
~H"""
761-
<div>
761+
<div :if={@job.user.handle}>
762762
<div class="relative -ml-[2.75rem]">
763763
<span
764764
:if={!@last?}

0 commit comments

Comments
 (0)