fix: show message on error alert if text is null

This commit is contained in:
ThatOneCalculator 2023-06-02 14:52:44 -07:00
parent 35e72bfca7
commit 4cbf73140c
No known key found for this signature in database
GPG key ID: 8703CACD01000000

View file

@ -277,6 +277,9 @@ export function alert(props: {
text?: string | null;
}): Promise<void> {
return new Promise((resolve, reject) => {
if (props.text == null && props.type === "error") {
props.text = "An unknown error occured!"
}
popup(
MkDialog,
props,