Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes postonly tooltip message #170

Merged
merged 1 commit into from
Oct 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/app/components/order_input/LimitOrderInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import { AiOutlineInfoCircle } from "react-icons/ai";
import { BottomRightErrorLabel } from "components/BottomRightErrorLabel";

const POST_ONLY_TOOLTIP =
"Select 'POST ONLY' to ensure your order is added to the order book without matching existing orders. " +
"If your order can be partially or completely executed immediately, it will not be created. " +
"This option removes trading fees completely and ensures you receive the maker rebate.";
"Select 'POST ONLY' when you want your order to be added to the order book without matching existing orders. " +
"If the order can be matched immediately, it will not be created. " +
"This option helps ensure you receive the maker rebate.";

function NonTargetToken() {
const { token2, validationToken2, side } = useAppSelector(
Expand Down