diff --git a/portal-ui/src/screens/Console/NotificationEndpoints/NotificationEndpoints.tsx b/portal-ui/src/screens/Console/NotificationEndpoints/NotificationEndpoints.tsx
index db9d554c4..a370a7a6e 100644
--- a/portal-ui/src/screens/Console/NotificationEndpoints/NotificationEndpoints.tsx
+++ b/portal-ui/src/screens/Console/NotificationEndpoints/NotificationEndpoints.tsx
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see .
-import React, { Fragment, useState } from "react";
+import React, { Fragment } from "react";
import PageHeader from "../Common/PageHeader/PageHeader";
import { Grid } from "@material-ui/core";
import { createStyles, Theme, withStyles } from "@material-ui/core/styles";
@@ -47,8 +47,6 @@ const NotificationEndpoints = ({
session,
distributedSetup,
}: INotificationEndpoints) => {
- const [selectedTab, setSelectedTab] = useState(0);
-
return (
diff --git a/portal-ui/src/screens/Console/NotificationEndpoints/NotificationTypeSelector.tsx b/portal-ui/src/screens/Console/NotificationEndpoints/NotificationTypeSelector.tsx
index 47cb8a4ab..f8e88414b 100644
--- a/portal-ui/src/screens/Console/NotificationEndpoints/NotificationTypeSelector.tsx
+++ b/portal-ui/src/screens/Console/NotificationEndpoints/NotificationTypeSelector.tsx
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see .
-import React, { Fragment, useState } from "react";
+import React, { Fragment } from "react";
import Grid from "@material-ui/core/Grid";
import { createStyles, Theme, withStyles } from "@material-ui/core/styles";
import { servicesList } from "./utils";
@@ -34,17 +34,6 @@ const withLogos = servicesList.filter((elService) => elService.logo !== "");
const styles = (theme: Theme) =>
createStyles({
...settingsCommon,
- mainCont: {
- paddingLeft: 50,
- paddingRight: 50,
- },
- mainTitle: {
- fontSize: 18,
- color: "#000",
- fontWeight: 600,
- marginBottom: 10,
- marginTop: 10,
- },
...typesSelection,
});