Skip to content

Commit

Permalink
Fix typecheck error
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Jan 23, 2024
1 parent aa6551f commit cb1412d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/loot-core/src/client/state-types/prefs.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import type { LocalPrefs, GlobalPrefs } from '../../types/prefs';
import type * as constants from '../constants';

export type PrefsState = {
local: LocalPrefs | null;
global: GlobalPrefs | null;
local: LocalPrefs;
global: GlobalPrefs;
};

export type SetPrefsAction = {
Expand Down

0 comments on commit cb1412d

Please sign in to comment.