Skip to content

Commit ad0d418

Browse files
waleedlatif1claude
andcommitted
fix(mothership): mark onSendNow as explicit fire-and-forget
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8c0fe13 commit ad0d418

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/sim/app/workspace/[workspaceId]/home/components/queued-messages/queued-messages.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export function QueuedMessages({ messageQueue, onRemove, onSendNow, onEdit }: Qu
7474
type='button'
7575
onClick={(e) => {
7676
e.stopPropagation()
77-
onSendNow(msg.id)
77+
void onSendNow(msg.id)
7878
}}
7979
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]'
8080
>

0 commit comments

Comments
 (0)