From eae5d24d9e79e59a19d4721caaeaa0ca650ecb33 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 1 Mar 2026 16:20:51 -0800 Subject: chore(biome): drop formatter style overrides --- src/stores/settingsSyncTimes.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/stores/settingsSyncTimes.ts') diff --git a/src/stores/settingsSyncTimes.ts b/src/stores/settingsSyncTimes.ts index 8b4d355b..c9b0ab9a 100644 --- a/src/stores/settingsSyncTimes.ts +++ b/src/stores/settingsSyncTimes.ts @@ -1,13 +1,13 @@ -import { writable } from 'svelte/store'; +import { writable } from "svelte/store"; interface SettingsSyncTimes { - lastPush: Date; - lastPull: Date; + lastPush: Date; + lastPull: Date; } const settingsSyncPulled = writable({ - lastPush: new Date(), - lastPull: new Date() + lastPush: new Date(), + lastPull: new Date(), }); export default settingsSyncPulled; -- cgit v1.2.3