Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
fix: tims form issues, closes #321, #322
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Nov 9, 2020
1 parent c2dbbdd commit 270f33a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/pages/home/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
selectTransactionListFetchError,
} from '@store/transaction';
import { selectPendingTransactions } from '@store/pending-transaction';
import { selectNextCycleInfo, selectPoxInfo, selectStackerInfo } from '@store/stacking';
import { selectPoxInfo, selectStackerInfo } from '@store/stacking';
import { homeActions, selectTxModalOpen, selectReceiveModalOpen } from '@store/home';
import {
TransactionList,
Expand All @@ -33,7 +33,6 @@ import { ReceiveStxModal } from '@modals/receive-stx/receive-stx-modal';
import { TransactionListItemPending } from '@components/home/transaction-list/transaction-list-item-pending';

import { HomeLayout } from './home-layout';
import { Transaction } from '@blockstack/stacks-blockchain-api-types';

export const Home: FC = () => {
const dispatch = useDispatch();
Expand All @@ -50,11 +49,12 @@ export const Home: FC = () => {
receiveModalOpen,
activeNode,
stackingDetails,
nextCycleInfo,

stackerInfo,
} = useSelector((state: RootState) => ({
address: selectAddress(state),
txs: selectTransactionList(state),
spendableBalance: selectAvailableBalance(state),
pendingTxs: selectPendingTransactions(state),
balance: selectAddressBalance(state),
txModalOpen: selectTxModalOpen(state),
Expand Down

0 comments on commit 270f33a

Please sign in to comment.