diff --git a/src/components/Titles.tsx b/src/components/Titles.tsx
index c630b978..2f0e4a86 100644
--- a/src/components/Titles.tsx
+++ b/src/components/Titles.tsx
@@ -7,16 +7,19 @@ import Icon from './Icon'
type TitlesProps = {
title: string
subtitle: string
+ isAdvancedSettings?: boolean
}
-const Titles = ({ title, subtitle }: TitlesProps) => {
+const Titles = ({ title, subtitle, isAdvancedSettings }: TitlesProps) => {
return (
{title}
- }>
- Advanced Settings
-
+ {isAdvancedSettings && (
+ }>
+ Advanced Settings
+
+ )}
{subtitle}
diff --git a/src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx b/src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx
index 03499fa8..93b6527f 100644
--- a/src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx
+++ b/src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx
@@ -35,6 +35,7 @@ const DeviceHeanlthCheckContent = () => {