Open the browser console to see detailed logs from the UserOrdersTab component.
47 | 48 |{activeUserId || 'None'}
13 |{users.length}
18 |Email: {activeUser.email}
25 |Name: {activeUser.name || 'Not set'}
26 |Accounts: {activeUser.accounts.length}
27 | 28 | {activeUser.accounts.length > 0 && ( 29 |#{index + 1}
35 |Exchange: {account.exchange}
36 |Email: {account.email}
37 |Has API Key: {account.key ? 'Yes' : 'No'}
38 |Has Secret: {account.privateKey ? 'Yes' : 'No'}
39 |No active user selected
51 |56 | {JSON.stringify(results, null, 2)} 57 |58 |
58 | Приложение столкнулось с неожиданной ошибкой, но мы перехватили её и предотвратили крах. 59 |
60 | 61 | {showDetails && this.state.error && ( 62 |65 | {this.state.error.message} 66 |67 |
66 | We use cookies to improve your experience and analyze site usage. 67 |
68 |161 | {body} 162 |
163 | ) 164 | }) 165 | FormMessage.displayName = "FormMessage" 166 | 167 | export { 168 | useFormField, 169 | Form, 170 | FormItem, 171 | FormLabel, 172 | FormControl, 173 | FormDescription, 174 | FormMessage, 175 | FormField, 176 | } 177 | -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react" 2 | import * as HoverCardPrimitive from "@radix-ui/react-hover-card" 3 | 4 | import { cn } from "@/lib/utils" 5 | 6 | const HoverCard = HoverCardPrimitive.Root 7 | 8 | const HoverCardTrigger = HoverCardPrimitive.Trigger 9 | 10 | const HoverCardContent = React.forwardRef< 11 | React.ElementRef14 | This widget allows you to manage trading deals. You can view all deals in a list, 15 | open individual deals to see details, edit deal information, and manage trades within each deal. 16 |
17 |