diff --git a/locales/de.json b/locales/de.json
index 735bdc5..93e7a7d 100644
--- a/locales/de.json
+++ b/locales/de.json
@@ -13,9 +13,7 @@
"device": {
"light": {
"pickerColorModeText": "Farbauswahl",
- "pickerColorModePlaceholder": "Wählen Sie einen Farbmodus",
- "minimumBrightnessText": "Minimale Helligkeit",
- "maximumBrightnessText": "Maximale Helligkeit"
+ "pickerColorModePlaceholder": "Wählen Sie einen Farbmodus"
},
"settings": {
"settingsTitle": "Einstellungen",
diff --git a/locales/en.json b/locales/en.json
index 4ff6288..c2fcf93 100644
--- a/locales/en.json
+++ b/locales/en.json
@@ -13,9 +13,7 @@
"device": {
"light": {
"pickerColorModeText": "Color selection",
- "pickerColorModePlaceholder": "Select a color mode",
- "minimumBrightnessText": "Minimum brightness",
- "maximumBrightnessText": "Maximum brightness"
+ "pickerColorModePlaceholder": "Select a color mode"
},
"settings": {
"settingsTitle": "Settings",
diff --git a/src/Screens/Device/light.js b/src/Screens/Device/light.js
index 95a69f4..212d9a3 100644
--- a/src/Screens/Device/light.js
+++ b/src/Screens/Device/light.js
@@ -375,69 +375,6 @@ export default function LightView() {
onValueChange={(e) => setSwitchState(e)}
/>
-
-
-
- {t("screens.device.light.minimumBrightnessText")}
-
-
- {sliderMinimumBrightness} %
-
-
-
-
- {t("screens.device.light.maximumBrightnessText")}
-
-
- {sliderMaximumBrightness} %
-
-
-
-
-
- setSliderMinimumBrightness(Math.round(v))}
- />
-
-
- setSliderMaximumBrightness(Math.round(v))}
- />
-
-
>
);