fix: join to sync

This commit is contained in:
Artemy 2023-04-05 14:46:25 +03:00
parent 6d78613653
commit 482031b1f6
3 changed files with 1 additions and 5 deletions

View file

@ -17,7 +17,6 @@ function onFooEvent() {
}
function onSync({ settings, Notes, NoteText, NoteName }) {
console.log(settings, Notes, NoteText, NoteName);
localStorage.setItem("Notes", Notes);
localStorage.setItem("NoteText", NoteText);
localStorage.setItem("NoteName", NoteName);

View file

@ -69,9 +69,8 @@ function Settings() {
<SettingsSection name={locals.Sync}>
<SettingsCheckBox
label={locals.BroadcastSync}
onChange={(e) => {
onClick={(e) => {
if (e.target.checked) {
console.log("Broadcasting sync");
socket.emit("joinRoom", settings.SyncPassword);
} else {
socket.emit("leaveRoom");