diff --git a/frontend/src/_helpers/appUtils.js b/frontend/src/_helpers/appUtils.js index 86da1b02bb..1669e874f1 100644 --- a/frontend/src/_helpers/appUtils.js +++ b/frontend/src/_helpers/appUtils.js @@ -752,7 +752,7 @@ export function runQuery(_ref, queryId, queryName, confirmed = undefined, mode) } if (dataQuery.options.showSuccessNotification) { - const notificationDuration = dataQuery.options.notificationDuration || 5000; + const notificationDuration = dataQuery.options.notificationDuration * 1000 || 5000; toast.success(dataQuery.options.successMessage, { duration: notificationDuration, });