Add checks for player type

This commit is contained in:
jeffvli 2022-12-25 01:55:00 -08:00
parent ae5afe868e
commit 4353e81df3
6 changed files with 47 additions and 18 deletions

View file

@ -233,3 +233,5 @@ export const useTableSettings = (type: TableType) =>
useSettingsStore((state) => state.tables[type]);
export const useGeneralSettings = () => useSettingsStore((state) => state.general);
export const usePlayerType = () => useSettingsStore((state) => state.player.type);