Fix profile dialog

This commit is contained in:
2025-08-30 19:08:43 +03:00
Unverified
parent 5af5c98f71
commit 65c5a6d5fb
6 changed files with 26 additions and 19 deletions
+8
View File
@@ -223,4 +223,12 @@ export interface WebSocketError {
export interface WebSocketCredentials {
scheme: string;
credentials: string;
}
// -----------
// React types
// -----------
export interface DialogProps {
isOpen: boolean;
onOpenChange: (value: boolean) => void;
}