Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(mothership): mark onSendNow as explicit fire-and-forget
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
  • Loading branch information
waleedlatif1 and claude committed Mar 14, 2026
commit ad0d4184576a772ec73a98e8fb2c8c2e0b5bd5e9
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function QueuedMessages({ messageQueue, onRemove, onSendNow, onEdit }: Qu
type='button'
onClick={(e) => {
e.stopPropagation()
onSendNow(msg.id)
void onSendNow(msg.id)
}}
className='rounded-[6px] p-[5px] text-[var(--text-tertiary)] transition-colors hover:bg-black/[0.06] hover:text-[var(--text-primary)] dark:hover:bg-white/[0.06]'
>
Expand Down
Loading