Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dcts committed Aug 5, 2024
1 parent fcd1b8a commit fffd38e
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions src/app/components/OrderInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,17 +96,9 @@ export function OrderInput() {
const dispatch = useAppDispatch();
const pairAddress = useAppSelector((state) => state.pairSelector.address);
const { walletData } = useAppSelector((state) => state.radix);
const {
type,
side,
token1,
token2,
price,
specifiedToken,
validationPrice,
validationToken1,
validationToken2,
} = useAppSelector((state) => state.orderInput);
const { type, side, token1, token2, price, specifiedToken } = useAppSelector(
(state) => state.orderInput
);

// for better readibility
const isMarketOrder = type === "MARKET";
Expand Down

0 comments on commit fffd38e

Please sign in to comment.