diff options
author | megumin <megumin.bakaretsurie@gmail.com> | 2022-11-22 22:05:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 22:05:46 +0000 |
commit | 9f7ec0aa8d870584285d5ecf8c3d8a4262671049 (patch) | |
tree | c3b88d1b91083bc6fcb992a1860260384390da4f | |
parent | 0239bb0aac97513006be513b5c967c9b53294be9 (diff) | |
download | Vencord-9f7ec0aa8d870584285d5ecf8c3d8a4262671049.tar.gz Vencord-9f7ec0aa8d870584285d5ecf8c3d8a4262671049.tar.bz2 Vencord-9f7ec0aa8d870584285d5ecf8c3d8a4262671049.zip |
settings: better button text for plugin settings modal (#251)
-rw-r--r-- | src/components/PluginSettings/PluginModal.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/PluginSettings/PluginModal.tsx b/src/components/PluginSettings/PluginModal.tsx index 592b6cb..7331fff 100644 --- a/src/components/PluginSettings/PluginModal.tsx +++ b/src/components/PluginSettings/PluginModal.tsx @@ -214,7 +214,7 @@ export default function PluginModal({ plugin, onRestartNeeded, onClose, transiti size={Button.Sizes.SMALL} color={Button.Colors.RED} > - Exit Without Saving + Cancel </Button> <Tooltip text="You must fix all errors before saving" shouldShow={!canSubmit()}> {({ onMouseEnter, onMouseLeave }) => ( @@ -226,7 +226,7 @@ export default function PluginModal({ plugin, onRestartNeeded, onClose, transiti onMouseLeave={onMouseLeave} disabled={!canSubmit()} > - Save & Exit + Save & Close </Button> )} </Tooltip> |