Skip to content

Commit

Permalink
enhance: improve colors for workflow steps UX
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhopperlowe committed Jan 6, 2025
1 parent 432a7bd commit 42fe98a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function ToolAuthenticationStatus({
const handleDeauthorize = async () => {
if (!toolInfo) return;

const { error } = await deauthorize.executeAsync(namespace, entityId, [
const [error] = await deauthorize.executeAsync(namespace, entityId, [
tool,
]);

Expand Down
4 changes: 2 additions & 2 deletions ui/admin/app/components/workflow/steps/StepBase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function StepBase({
<div className={cn("border rounded-md bg-background", className)}>
<div
className={cn(
"flex items-start gap-2 p-3 bg-muted",
"flex items-start gap-2 p-3 bg-background-secondary",
showExpanded ? "rounded-t-md" : "rounded-md"
)}
>
Expand Down Expand Up @@ -106,7 +106,7 @@ export function StepBase({
placeholder={fieldConfig.placeholder}
maxHeight={100}
minHeight={0}
className="flex-grow bg-background-secondary"
className="flex-grow bg-background"
onClick={(e) => e.stopPropagation()}
/>

Expand Down

0 comments on commit 42fe98a

Please sign in to comment.