mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-06 05:49:12 +02:00
fix(views): drop disableHoverCard from QuickCreate modal ActorAvatars
The ActorAvatar prop was renamed in #1794 (split presence into availability + last-task) — `disableHoverCard` is now `enableHoverCard` with inverted semantics. The QuickCreate modal landed against the old API and broke main's frontend typecheck. The two avatars in the modal already want the default (no hover card), so just drop the prop instead of opting in.
This commit is contained in:
@@ -218,7 +218,6 @@ export function QuickCreateIssueModal({
|
||||
actorType="agent"
|
||||
actorId={selectedAgent.id}
|
||||
size={16}
|
||||
disableHoverCard
|
||||
/>
|
||||
{selectedAgent.name}
|
||||
</span>
|
||||
@@ -247,7 +246,6 @@ export function QuickCreateIssueModal({
|
||||
actorType="agent"
|
||||
actorId={a.id}
|
||||
size={16}
|
||||
disableHoverCard
|
||||
/>
|
||||
<span className="flex-1 truncate">{a.name}</span>
|
||||
</DropdownMenuItem>
|
||||
|
||||
Reference in New Issue
Block a user