refactor: reorganize docs folder structure and update P2P plan

This commit is contained in:
2025-12-11 21:01:58 +03:00
parent 1812a1f563
commit a0bcfcc222
345 changed files with 2476 additions and 1037 deletions
+6
View File
@@ -44,6 +44,12 @@ export function TradeModal({ offer, onClose }: TradeModalProps) {
return;
}
// Prevent self-trading
if (offer.seller_id === user.id) {
toast.error('You cannot trade with your own offer');
return;
}
if (!isValidAmount) {
toast.error('Invalid amount');
return;