(type: "success" | "error", message: string)
| 34 | } | null>(null); |
| 35 | |
| 36 | const showNotification = (type: "success" | "error", message: string) => { |
| 37 | setNotification({ type, message }); |
| 38 | setTimeout(() => setNotification(null), 3000); |
| 39 | }; |
| 40 | |
| 41 | const handleRestartGateway = async () => { |
| 42 | // Placeholder - would call openclaw gateway restart |
no outgoing calls
no test coverage detected