mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 02:13:33 +00:00
use type, remove console
This commit is contained in:
parent
b3a9e7ccba
commit
5e9ef9f23f
5 changed files with 8 additions and 4 deletions
|
|
@ -1,5 +1,6 @@
|
|||
import { ipcMain, nativeTheme, safeStorage } from 'electron';
|
||||
import Store from 'electron-store';
|
||||
import type { TitleTheme } from '/@/renderer/types';
|
||||
|
||||
export const store = new Store();
|
||||
|
||||
|
|
@ -49,7 +50,7 @@ ipcMain.handle('password-set', (_event, password: string, server: string) => {
|
|||
return false;
|
||||
});
|
||||
|
||||
ipcMain.on('theme-set', (_event, theme: 'dark' | 'light' | 'system') => {
|
||||
ipcMain.on('theme-set', (_event, theme: TitleTheme) => {
|
||||
store.set('theme', theme);
|
||||
nativeTheme.themeSource = theme;
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue