From 287a6415c9df30674392d5417ca81b85dedf8968 Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Sun, 13 Jul 2025 04:09:24 +0200 Subject: [PATCH] feat: rename ModalProps heavy property to obscure --- types/interfaces.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/interfaces.ts b/types/interfaces.ts index e26648a..2a05c38 100644 --- a/types/interfaces.ts +++ b/types/interfaces.ts @@ -94,7 +94,7 @@ export interface DropdownOption { export interface ModalProps { title?: string, - heavy?: boolean, + obscure?: boolean, onClose?: () => void, onCancel?: () => void }