fix(v2): preserve native pending message appearance

Remove the added queue delivery badge from pending prompt bubbles. Pending prompts keep CodeNomad's existing message presentation while their contextual queue, edit, and remove actions remain available.

Validated with the UI typecheck and OpenCode data projection tests.
This commit is contained in:
Pascal André 2026-08-25 23:17:39 +02:00
parent 829768b9d3
commit 75b2259e44
No known key found for this signature in database

View file

@ -604,12 +604,6 @@ export default function MessageItem(props: MessageItemProps) {
<div class="pt-0 whitespace-pre-wrap break-words leading-[1.1]" dir="auto">
<Show when={props.pendingPrompt} keyed>
{(pending) => (
<div class="message-queued-badge">{t(`promptQueue.delivery.${pending.delivery}`)}</div>
)}
</Show>
<Show when={errorMessage()}>
<div class="message-error-block" dir="auto"> {errorMessage()}</div>
</Show>