Skip to content

Commit

Permalink
fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Carol Sachdeva committed Feb 9, 2023
1 parent 64889f5 commit 68d5e74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/cashier/src/containers/cashier/cashier.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,4 +205,4 @@ const Cashier = observer(({ history, location, routes: routes_config }: TCashier
</FadeWrapper>
);
});
export default withRouter(Cashier);
export default withRouter(Cashier);
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,7 @@ type TAccountTransferReceipt = {
};

const AccountTransferReceipt = observer(({ onClose, history }: TAccountTransferReceipt) => {
const {
ui,
common,
client,
} = useStore();
const { ui, common, client } = useStore();
const { account_transfer } = useCashierStore();
const { disableApp, enableApp } = ui;
const { is_from_derivgo } = common;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ type TAccountTransferProps = {

const AccountTransfer = observer(
({ onClickDeposit, onClickNotes, onClose, openAccountSwitcherModal, setSideNotes }: TAccountTransferProps) => {
const {
client,
} = useStore();
const { client } = useStore();
const { account_transfer, general_store, transaction_history } = useCashierStore();

const {
Expand Down

0 comments on commit 68d5e74

Please sign in to comment.