show something to indicate claims were sent (mostly in BVC screens)

This commit is contained in:
2024-04-28 18:36:06 -06:00
parent 8a9bb100ea
commit ddd32e7f44
5 changed files with 18 additions and 19 deletions

View File

@@ -38,7 +38,7 @@ export interface NotificationIface {
group: string; // "alert" | "modal"
type: string; // "toast" | "info" | "success" | "warning" | "danger"
title: string;
text: string;
text?: string;
onCancel?: (stopAsking: boolean) => Promise<void>;
onNo?: (stopAsking: boolean) => Promise<void>;
onYes?: () => Promise<void>;