Skip to content

Commit

Permalink
views/Send: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Apr 8, 2023
1 parent 1bf8c08 commit 053c419
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions views/Send.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ import TransactionsStore from '../stores/TransactionsStore';
import UnitsStore from '../stores/UnitsStore';
import UTXOsStore from '../stores/UTXOsStore';

import Amount from './../components/Amount';
import Amount from '../components/Amount';
import AmountInput from '../components/AmountInput';
import Button from './../components/Button';
import LoadingIndicator from './../components/LoadingIndicator';
import { ErrorMessage } from './../components/SuccessErrorMessage';
import Button from '../components/Button';
import LoadingIndicator from '../components/LoadingIndicator';
import { ErrorMessage } from '../components/SuccessErrorMessage';
import Header from '../components/Header';
import Screen from '../components/Screen';
import Switch from './../components/Switch';
import TextInput from './../components/TextInput';
import UTXOPicker from './../components/UTXOPicker';
import Switch from '../components/Switch';
import TextInput from '../components/TextInput';
import UTXOPicker from '../components/UTXOPicker';

import BackendUtils from '../utils/BackendUtils';
import NFCUtils from '../utils/NFCUtils';
Expand Down

0 comments on commit 053c419

Please sign in to comment.