Commit 36f39ed3 by Arjun Jhukal

made the server and client private component similar

parent a1188f74
...@@ -40,10 +40,10 @@ export default function CoinCalculator({ slug }: { slug: string }) { ...@@ -40,10 +40,10 @@ export default function CoinCalculator({ slug }: { slug: string }) {
}; };
const handleBuy = () => { const handleBuy = () => {
if (Number(amount) < 2) { if (Number(amount) < 20) {
return dispatch( return dispatch(
showToast({ showToast({
message: "Minimum amount is 2", message: "Minimum amount is 20",
variant: ToastVariant.ERROR, variant: ToastVariant.ERROR,
}) })
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment