diff --git a/invokeai/frontend/web/src/features/toast/ToastWithSessionRefDescription.tsx b/invokeai/frontend/web/src/features/toast/ToastWithSessionRefDescription.tsx index 607dcaeb63..9d2999e765 100644 --- a/invokeai/frontend/web/src/features/toast/ToastWithSessionRefDescription.tsx +++ b/invokeai/frontend/web/src/features/toast/ToastWithSessionRefDescription.tsx @@ -20,8 +20,11 @@ export default function ToastWithSessionRefDescription({ message, sessionId }: P icon={} onClick={onCopy.bind(null, sessionId)} variant="ghost" + sx={sx} /> ); } + +const sx = { svg: { fill: 'base.50' } };