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:
Jiang Bohan
2026-04-29 14:12:53 +08:00
parent e4103f6ad7
commit 859a4ea222

View File

@@ -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>