Skip to content

Commit

Permalink
web: remove unused account store
Browse files Browse the repository at this point in the history
  • Loading branch information
Thykof committed Jan 9, 2024
1 parent ce065ec commit 475f6c4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 25 deletions.
20 changes: 0 additions & 20 deletions web/massastation/src/store/accountStore.ts

This file was deleted.

5 changes: 0 additions & 5 deletions web/massastation/src/store/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@ import { create } from 'zustand';

// LOCALS
import configStore, { ConfigStoreState } from './configStore';
import accountStore, { AccountStoreState } from './accountStore';
import networkStore, { NetworkStoreState } from './networkStore';

export const useConfigStore = create<ConfigStoreState>((...obj) => ({
...configStore(...obj),
}));

export const useAccountStore = create<AccountStoreState>((...obj) => ({
...accountStore(...obj),
}));

export const useNetworkStore = create<NetworkStoreState>((...obj) => ({
...networkStore(...obj),
}));

0 comments on commit 475f6c4

Please sign in to comment.