Skip to content

Commit

Permalink
fix: type added to transfer_to_hint
Browse files Browse the repository at this point in the history
  • Loading branch information
iman committed Sep 12, 2022
1 parent 0b660c7 commit ef08160
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ const AccountTransferForm = ({
}: TAccountTransferFormProps) => {
const [from_accounts, setFromAccounts] = React.useState({});
const [to_accounts, setToAccounts] = React.useState({});
const [transfer_to_hint, setTransferToHint] = React.useState();
const [transfer_to_hint, setTransferToHint] = React.useState<string>();

const { daily_transfers } = account_limits;
const mt5_remaining_transfers = daily_transfers?.mt5;
Expand Down

0 comments on commit ef08160

Please sign in to comment.