Fix Creations Mistake

This commit is contained in:
thororen1234 2024-10-23 10:29:49 -04:00
parent f7f2053e10
commit d1528d2756

View file

@ -287,12 +287,12 @@ export default function PluginModal({ plugin, onRestartNeeded, onClose, transiti
<Tooltip text="Reset to default settings" shouldShow={!isObjectEmpty(tempSettings)}> <Tooltip text="Reset to default settings" shouldShow={!isObjectEmpty(tempSettings)}>
{({ onMouseEnter, onMouseLeave }) => ( {({ onMouseEnter, onMouseLeave }) => (
<Button <Button
className="button-danger-background-no-margin"
size={Button.Sizes.SMALL} size={Button.Sizes.SMALL}
color={Button.Colors.BRAND} color={Button.Colors.BRAND}
onClick={handleResetClick} onClick={handleResetClick}
onMouseEnter={onMouseEnter} onMouseEnter={onMouseEnter}
onMouseLeave={onMouseLeave} onMouseLeave={onMouseLeave}
style={{ backgroundColor: "var(--button-danger-background)" }}
> >
Reset Reset
</Button> </Button>