chore: more flexible modal manager types (#19123)

* fix: required argument in onClose modal function

* chore: more flexible modal manager types
This commit is contained in:
Daniel Dietzler
2025-06-12 00:32:49 +02:00
committed by GitHub
parent 5179c5badf
commit 22eef5f3c5
11 changed files with 21 additions and 16 deletions

View File

@@ -207,7 +207,7 @@
};
const onCreateNewLibraryClicked = async () => {
const result = await modalManager.show(LibraryUserPickerModal, {});
const result = await modalManager.show(LibraryUserPickerModal);
if (result) {
await handleCreate(result);
}