Fix dialog focus

This commit is contained in:
2026-03-23 03:51:51 +00:00
parent a28d43a68b
commit 7fd89c5663
18 changed files with 403 additions and 177 deletions
+2 -2
View File
@@ -80,8 +80,8 @@ export interface AppContextType {
export interface DialogState {
/** Whether dialog is visible */
visible: boolean;
/** Dialog type. Use 'custom' when a screen renders its own dialog overlay. */
type: 'error' | 'info' | 'confirm' | 'custom';
/** Dialog type */
type: 'error' | 'info' | 'confirm';
/** Dialog message */
message: string;
/** Callback for confirm dialog */