diff options
author | Ryan Cao <70191398+ryanccn@users.noreply.github.com> | 2023-07-04 23:59:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-04 15:59:42 +0000 |
commit | 232e340fab83757bc3ed023560236b1fb576c3cc (patch) | |
tree | 8fb37b3b585b8fe4dbec694b07acbdc86037e8a1 /src/components/VencordSettings | |
parent | 8027daa2b0fcb00a99328b9ba02d06668e4688f9 (diff) | |
download | Vencord-232e340fab83757bc3ed023560236b1fb576c3cc.tar.gz Vencord-232e340fab83757bc3ed023560236b1fb576c3cc.tar.bz2 Vencord-232e340fab83757bc3ed023560236b1fb576c3cc.zip |
fix: send notification when settings are manually synced (#1378)
Co-authored-by: V <vendicated@riseup.net>
Diffstat (limited to 'src/components/VencordSettings')
-rw-r--r-- | src/components/VencordSettings/CloudTab.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/VencordSettings/CloudTab.tsx b/src/components/VencordSettings/CloudTab.tsx index 77e5298..0392a45 100644 --- a/src/components/VencordSettings/CloudTab.tsx +++ b/src/components/VencordSettings/CloudTab.tsx @@ -86,7 +86,7 @@ function SettingsSyncSection() { <Button size={Button.Sizes.SMALL} disabled={!sectionEnabled} - onClick={() => putCloudSettings()} + onClick={() => putCloudSettings(true)} >Sync to Cloud</Button> <Tooltip text="This will overwrite your local settings with the ones on the cloud. Use wisely!"> {({ onMouseLeave, onMouseEnter }) => ( |