Skip to content

Commit

Permalink
fix: remove unwanted file change
Browse files Browse the repository at this point in the history
  • Loading branch information
nada-deriv committed Oct 3, 2023
1 parent 116a6ef commit c1ad581
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import './WalletTransactions.scss';

const WalletTransactions = () => {
const [filterValue, setFilterValue] =
useState<ComponentProps<typeof WalletTransactionsCrypto>['filter']>(undefined);
const [isPendingActive, setIsPendingActive] = useState(true);
React.useState<ComponentProps<typeof WalletTransactionsCrypto>['filter']>(undefined);
const [isPendingActive, setIsPendingActive] = React.useState(true);

return (
<div className='wallets-transactions'>
Expand Down

0 comments on commit c1ad581

Please sign in to comment.