diff --git a/frontend/src/Settings/Notifications/Notifications/Notification.js b/frontend/src/Settings/Notifications/Notifications/Notification.js
index e7de0b308..22e17c18f 100644
--- a/frontend/src/Settings/Notifications/Notifications/Notification.js
+++ b/frontend/src/Settings/Notifications/Notifications/Notification.js
@@ -59,6 +59,7 @@ class Notification extends Component {
onGrab,
onDownload,
onUpgrade,
+ onImportComplete,
onRename,
onSeriesAdd,
onSeriesDelete,
@@ -71,6 +72,7 @@ class Notification extends Component {
supportsOnGrab,
supportsOnDownload,
supportsOnUpgrade,
+ supportsOnImportComplete,
supportsOnRename,
supportsOnSeriesAdd,
supportsOnSeriesDelete,
@@ -105,7 +107,7 @@ class Notification extends Component {
{
supportsOnDownload && onDownload ?
:
null
}
@@ -118,6 +120,14 @@ class Notification extends Component {
null
}
+ {
+ supportsOnImportComplete && onImportComplete ?
+ :
+ null
+ }
+
{
supportsOnRename && onRename ?