diff --git a/src/stores/station.ts b/src/stores/station.ts index a371b2e..c5a159e 100644 --- a/src/stores/station.ts +++ b/src/stores/station.ts @@ -9,5 +9,9 @@ export const useStationStore = defineStore('ndm-station-store', () => { const onlineStationList = computed(() => stationList.value.filter((station) => station.online)); - return { updatedTime, stationList, onlineStationList }; + return { + updatedTime, + stationList, + onlineStationList, + }; }); diff --git a/src/stores/theme.ts b/src/stores/theme.ts index 1ff074f..cb890c8 100644 --- a/src/stores/theme.ts +++ b/src/stores/theme.ts @@ -10,7 +10,10 @@ export const useThemeStore = defineStore( return darkThemeEnabled.value ? darkTheme : lightTheme; }); - return { darkThemeEnabled, themeMode }; + return { + darkThemeEnabled, + themeMode, + }; }, { persist: true,