Skip to content

Commit 9877de4

Browse files
fix(interfaces): review feedback — formErrors dep in field renderer, keep overlay tint on attachment remove
1 parent a66f4f2 commit 9877de4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/sim/app/(interfaces)/chat/components/input/input.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,12 +238,12 @@ export const ChatInput: React.FC<{
238238
</div>
239239
)}
240240
<Button
241-
variant='primary'
241+
variant='ghost'
242242
onClick={(e) => {
243243
e.stopPropagation()
244244
handleRemoveFile(file.id)
245245
}}
246-
className='absolute top-[2px] right-[2px] size-[16px] rounded-full p-0 opacity-0 group-hover:opacity-100'
246+
className='absolute top-[2px] right-[2px] size-[16px] rounded-full bg-black/60 p-0 text-white opacity-0 hover-hover:text-white group-hover:opacity-100'
247247
>
248248
<X className='size-[10px]' />
249249
</Button>

apps/sim/app/(interfaces)/resume/[workflowId]/[executionId]/resume-page-client.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ export default function ResumeExecutionPage({
382382
}
383383
}
384384
},
385-
[formValues, handleFormFieldChange]
385+
[formValues, formErrors, handleFormFieldChange]
386386
)
387387

388388
const renderDisabledFieldInput = useCallback(

0 commit comments

Comments
 (0)