fix: Remove progress bg instead of altering button bg

This commit is contained in:
blessedcoolant 2023-06-02 17:36:14 +12:00
parent 47301e6f85
commit ea9cf04765
2 changed files with 2 additions and 2 deletions

View File

@ -55,6 +55,7 @@ export default function InvokeButton(props: InvokeButton) {
right: '0', right: '0',
height: '100%', height: '100%',
overflow: 'clip', overflow: 'clip',
borderRadius: 4,
}} }}
> >
<ProgressBar /> <ProgressBar />
@ -86,7 +87,6 @@ export default function InvokeButton(props: InvokeButton) {
colorScheme="accent" colorScheme="accent"
id="invoke-button" id="invoke-button"
fontWeight={700} fontWeight={700}
background={!isReady ? 'none' : 'accent.700'}
{...rest} {...rest}
> >
Invoke Invoke

View File

@ -20,7 +20,7 @@ const invokeAIFilledTrack = defineStyle((_props) => ({
const invokeAITrack = defineStyle((_props) => { const invokeAITrack = defineStyle((_props) => {
return { return {
bg: 'base.800', bg: 'none',
}; };
}); });