From c9f5fe6e3db8a172a20afd394eb5348dd15a0fbb Mon Sep 17 00:00:00 2001 From: lscambo13 Date: Wed, 3 Jan 2024 23:25:10 +0530 Subject: [PATCH] dev: Fix typo --- js_modules/utils/inputDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js_modules/utils/inputDialog.js b/js_modules/utils/inputDialog.js index 6494ba1..97ec0db 100644 --- a/js_modules/utils/inputDialog.js +++ b/js_modules/utils/inputDialog.js @@ -4,7 +4,7 @@ let modalCancelButton; let tickBoxField; let inputFields; -const showInputInputDialog = ( +const showInputDialog = ( title = null, description = null, inputBoxes = ['Input A', 'Input B'], @@ -136,7 +136,7 @@ const showInputInputDialog = ( }; export const InputDialog = { - show: showInputInputDialog, + show: showInputDialog, getSubmitButton: () => { return modalSubmitButton; },