diff --git a/web/pgadmin/browser/static/js/browser.js b/web/pgadmin/browser/static/js/browser.js
index f0bb97877..d15970592 100644
--- a/web/pgadmin/browser/static/js/browser.js
+++ b/web/pgadmin/browser/static/js/browser.js
@@ -8,7 +8,7 @@
//////////////////////////////////////////////////////////////
import { generateNodeUrl } from './node_ajax';
-import Notify from '../../../static/js/helpers/Notifier';
+import Notify, {initializeModalProvider, initializeNotifier} from '../../../static/js/helpers/Notifier';
define('pgadmin.browser', [
'sources/gettext', 'sources/url_for', 'require', 'jquery', 'underscore',
@@ -439,6 +439,9 @@ define('pgadmin.browser', [
}
initializeBrowserTree(obj);
+ initializeModalProvider();
+ initializeNotifier();
+
// Syntax highlight the SQL Pane
if(document.getElementById('sql-textarea')){
diff --git a/web/pgadmin/static/js/helpers/Notifier.jsx b/web/pgadmin/static/js/helpers/Notifier.jsx
index 0bb8b1554..ef05eff0f 100644
--- a/web/pgadmin/static/js/helpers/Notifier.jsx
+++ b/web/pgadmin/static/js/helpers/Notifier.jsx
@@ -132,7 +132,7 @@ var Notifier = {
notify(content, autoHideDuration) {
if (content) {
if(!notifierInitialized) {
- initializeNotifier(document.getElementById('notifierContainer'));
+ initializeNotifier();
}
let options = {autoHideDuration, content:(key) => (