font consistency fixes

This commit is contained in:
2026-06-05 21:38:51 +00:00
parent 3b1b20b506
commit d88a208da5
7 changed files with 53 additions and 20 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import { getSyncSettings, requestAPI } from "./utils.js";
export async function setupClientSync (callback) {
const { scheme, rate } = getSyncSettings();
if (scheme === "never") {
return
return;
}
else if (scheme === "always") {
window.setInterval(callback, rate * 1000);