Skip to content

Commit

Permalink
fixup! fix: loading of wins, and gradient border on claim modal
Browse files Browse the repository at this point in the history
  • Loading branch information
RasenGUY committed Dec 10, 2023
1 parent 57db83f commit d7fa2bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/containers/App/AppSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ export const appSlice = createSlice({
});

export const { setWallet, setNetwork, resetWallet, resetNetwork, setNetworkUnsupported } = appSlice.actions;
export const selectNetwork = (state: RootState) => state.app.network;
export const selectUser = (state: RootState) => state.app.user;
export const selectWallet = (state: RootState) => state.app.user.wallet;
export const selectAppLoading = (state: RootState) => state.app.loading;
export const selectNetwork = (state: RootState) => state.connection.network;
export const selectUser = (state: RootState) => state.connection.user;
export const selectWallet = (state: RootState) => state.connection.user.wallet;
export const selectAppLoading = (state: RootState) => state.connection.loading;
export default appSlice.reducer;

0 comments on commit d7fa2bd

Please sign in to comment.