From c9c29b7c33130b252d8db616818d2076f7020ce4 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Sun, 1 Feb 2026 11:27:01 -0600 Subject: [PATCH] chore(sections): remove legacy single-section components replaced by template --- .../components/config-form/sections/AudioSection.tsx | 12 ------------ .../sections/AudioTranscriptionSection.tsx | 12 ------------ .../components/config-form/sections/AuthSection.tsx | 12 ------------ .../config-form/sections/BirdseyeSection.tsx | 12 ------------ .../config-form/sections/CameraMqttSection.tsx | 12 ------------ .../config-form/sections/CameraUiSection.tsx | 12 ------------ .../config-form/sections/ClassificationSection.tsx | 12 ------------ .../config-form/sections/DatabaseSection.tsx | 12 ------------ .../config-form/sections/DetectSection.tsx | 12 ------------ .../config-form/sections/DetectorsSection.tsx | 12 ------------ .../config-form/sections/EnvironmentVarsSection.tsx | 12 ------------ .../config-form/sections/FaceRecognitionSection.tsx | 12 ------------ .../config-form/sections/FfmpegSection.tsx | 12 ------------ .../components/config-form/sections/GenaiSection.tsx | 12 ------------ .../components/config-form/sections/LiveSection.tsx | 12 ------------ .../config-form/sections/LoggerSection.tsx | 12 ------------ .../components/config-form/sections/LprSection.tsx | 12 ------------ .../components/config-form/sections/ModelSection.tsx | 12 ------------ .../config-form/sections/MotionSection.tsx | 12 ------------ .../components/config-form/sections/MqttSection.tsx | 12 ------------ .../config-form/sections/NetworkingSection.tsx | 12 ------------ .../config-form/sections/NotificationsSection.tsx | 12 ------------ .../config-form/sections/ObjectsSection.tsx | 12 ------------ .../components/config-form/sections/OnvifSection.tsx | 12 ------------ .../components/config-form/sections/ProxySection.tsx | 12 ------------ .../config-form/sections/RecordSection.tsx | 12 ------------ .../config-form/sections/ReviewSection.tsx | 12 ------------ .../config-form/sections/SemanticSearchSection.tsx | 12 ------------ .../config-form/sections/SnapshotsSection.tsx | 12 ------------ .../config-form/sections/TelemetrySection.tsx | 12 ------------ .../config-form/sections/TimestampSection.tsx | 12 ------------ .../components/config-form/sections/TlsSection.tsx | 12 ------------ .../components/config-form/sections/UiSection.tsx | 12 ------------ 33 files changed, 396 deletions(-) delete mode 100644 web/src/components/config-form/sections/AudioSection.tsx delete mode 100644 web/src/components/config-form/sections/AudioTranscriptionSection.tsx delete mode 100644 web/src/components/config-form/sections/AuthSection.tsx delete mode 100644 web/src/components/config-form/sections/BirdseyeSection.tsx delete mode 100644 web/src/components/config-form/sections/CameraMqttSection.tsx delete mode 100644 web/src/components/config-form/sections/CameraUiSection.tsx delete mode 100644 web/src/components/config-form/sections/ClassificationSection.tsx delete mode 100644 web/src/components/config-form/sections/DatabaseSection.tsx delete mode 100644 web/src/components/config-form/sections/DetectSection.tsx delete mode 100644 web/src/components/config-form/sections/DetectorsSection.tsx delete mode 100644 web/src/components/config-form/sections/EnvironmentVarsSection.tsx delete mode 100644 web/src/components/config-form/sections/FaceRecognitionSection.tsx delete mode 100644 web/src/components/config-form/sections/FfmpegSection.tsx delete mode 100644 web/src/components/config-form/sections/GenaiSection.tsx delete mode 100644 web/src/components/config-form/sections/LiveSection.tsx delete mode 100644 web/src/components/config-form/sections/LoggerSection.tsx delete mode 100644 web/src/components/config-form/sections/LprSection.tsx delete mode 100644 web/src/components/config-form/sections/ModelSection.tsx delete mode 100644 web/src/components/config-form/sections/MotionSection.tsx delete mode 100644 web/src/components/config-form/sections/MqttSection.tsx delete mode 100644 web/src/components/config-form/sections/NetworkingSection.tsx delete mode 100644 web/src/components/config-form/sections/NotificationsSection.tsx delete mode 100644 web/src/components/config-form/sections/ObjectsSection.tsx delete mode 100644 web/src/components/config-form/sections/OnvifSection.tsx delete mode 100644 web/src/components/config-form/sections/ProxySection.tsx delete mode 100644 web/src/components/config-form/sections/RecordSection.tsx delete mode 100644 web/src/components/config-form/sections/ReviewSection.tsx delete mode 100644 web/src/components/config-form/sections/SemanticSearchSection.tsx delete mode 100644 web/src/components/config-form/sections/SnapshotsSection.tsx delete mode 100644 web/src/components/config-form/sections/TelemetrySection.tsx delete mode 100644 web/src/components/config-form/sections/TimestampSection.tsx delete mode 100644 web/src/components/config-form/sections/TlsSection.tsx delete mode 100644 web/src/components/config-form/sections/UiSection.tsx diff --git a/web/src/components/config-form/sections/AudioSection.tsx b/web/src/components/config-form/sections/AudioSection.tsx deleted file mode 100644 index b50d45b93..000000000 --- a/web/src/components/config-form/sections/AudioSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Audio Section Component -// Reusable for both global and camera-level audio settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const AudioSection = createConfigSection({ - sectionPath: "audio", - defaultConfig: getSectionConfig("audio", "camera"), -}); - -export default AudioSection; diff --git a/web/src/components/config-form/sections/AudioTranscriptionSection.tsx b/web/src/components/config-form/sections/AudioTranscriptionSection.tsx deleted file mode 100644 index f9d8c2653..000000000 --- a/web/src/components/config-form/sections/AudioTranscriptionSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Audio Transcription Section Component -// Global and camera-level audio transcription settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const AudioTranscriptionSection = createConfigSection({ - sectionPath: "audio_transcription", - defaultConfig: getSectionConfig("audio_transcription", "camera"), -}); - -export default AudioTranscriptionSection; diff --git a/web/src/components/config-form/sections/AuthSection.tsx b/web/src/components/config-form/sections/AuthSection.tsx deleted file mode 100644 index abaf26692..000000000 --- a/web/src/components/config-form/sections/AuthSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Auth Section Component -// Global authentication configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const AuthSection = createConfigSection({ - sectionPath: "auth", - defaultConfig: getSectionConfig("auth", "global"), -}); - -export default AuthSection; diff --git a/web/src/components/config-form/sections/BirdseyeSection.tsx b/web/src/components/config-form/sections/BirdseyeSection.tsx deleted file mode 100644 index f82edacf4..000000000 --- a/web/src/components/config-form/sections/BirdseyeSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Birdseye Section Component -// Camera-level birdseye settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const BirdseyeSection = createConfigSection({ - sectionPath: "birdseye", - defaultConfig: getSectionConfig("birdseye", "camera"), -}); - -export default BirdseyeSection; diff --git a/web/src/components/config-form/sections/CameraMqttSection.tsx b/web/src/components/config-form/sections/CameraMqttSection.tsx deleted file mode 100644 index 3a782537c..000000000 --- a/web/src/components/config-form/sections/CameraMqttSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Camera MQTT Section Component -// Camera-specific MQTT image publishing settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const CameraMqttSection = createConfigSection({ - sectionPath: "mqtt", - defaultConfig: getSectionConfig("mqtt", "camera"), -}); - -export default CameraMqttSection; diff --git a/web/src/components/config-form/sections/CameraUiSection.tsx b/web/src/components/config-form/sections/CameraUiSection.tsx deleted file mode 100644 index 4627d69f1..000000000 --- a/web/src/components/config-form/sections/CameraUiSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Camera UI Section Component -// Camera UI display settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const CameraUiSection = createConfigSection({ - sectionPath: "ui", - defaultConfig: getSectionConfig("ui", "camera"), -}); - -export default CameraUiSection; diff --git a/web/src/components/config-form/sections/ClassificationSection.tsx b/web/src/components/config-form/sections/ClassificationSection.tsx deleted file mode 100644 index 4c94ded55..000000000 --- a/web/src/components/config-form/sections/ClassificationSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Classification Section Component -// Global classification configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const ClassificationSection = createConfigSection({ - sectionPath: "classification", - defaultConfig: getSectionConfig("classification", "global"), -}); - -export default ClassificationSection; diff --git a/web/src/components/config-form/sections/DatabaseSection.tsx b/web/src/components/config-form/sections/DatabaseSection.tsx deleted file mode 100644 index 0cf51469d..000000000 --- a/web/src/components/config-form/sections/DatabaseSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Database Section Component -// Global database configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const DatabaseSection = createConfigSection({ - sectionPath: "database", - defaultConfig: getSectionConfig("database", "global"), -}); - -export default DatabaseSection; diff --git a/web/src/components/config-form/sections/DetectSection.tsx b/web/src/components/config-form/sections/DetectSection.tsx deleted file mode 100644 index 206d16f2c..000000000 --- a/web/src/components/config-form/sections/DetectSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Detect Section Component -// Reusable for both global and camera-level detect settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const DetectSection = createConfigSection({ - sectionPath: "detect", - defaultConfig: getSectionConfig("detect", "camera"), -}); - -export default DetectSection; diff --git a/web/src/components/config-form/sections/DetectorsSection.tsx b/web/src/components/config-form/sections/DetectorsSection.tsx deleted file mode 100644 index 4a724205b..000000000 --- a/web/src/components/config-form/sections/DetectorsSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Detectors Section Component -// Global detectors configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const DetectorsSection = createConfigSection({ - sectionPath: "detectors", - defaultConfig: getSectionConfig("detectors", "global"), -}); - -export default DetectorsSection; diff --git a/web/src/components/config-form/sections/EnvironmentVarsSection.tsx b/web/src/components/config-form/sections/EnvironmentVarsSection.tsx deleted file mode 100644 index 86f1db6fa..000000000 --- a/web/src/components/config-form/sections/EnvironmentVarsSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Environment Variables Section Component -// Global environment variables configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const EnvironmentVarsSection = createConfigSection({ - sectionPath: "environment_vars", - defaultConfig: getSectionConfig("environment_vars", "global"), -}); - -export default EnvironmentVarsSection; diff --git a/web/src/components/config-form/sections/FaceRecognitionSection.tsx b/web/src/components/config-form/sections/FaceRecognitionSection.tsx deleted file mode 100644 index b86909bdb..000000000 --- a/web/src/components/config-form/sections/FaceRecognitionSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Face Recognition Section Component -// Camera-level face recognition settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const FaceRecognitionSection = createConfigSection({ - sectionPath: "face_recognition", - defaultConfig: getSectionConfig("face_recognition", "camera"), -}); - -export default FaceRecognitionSection; diff --git a/web/src/components/config-form/sections/FfmpegSection.tsx b/web/src/components/config-form/sections/FfmpegSection.tsx deleted file mode 100644 index f3f267649..000000000 --- a/web/src/components/config-form/sections/FfmpegSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// FFmpeg Section Component -// Global and camera-level FFmpeg settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const FfmpegSection = createConfigSection({ - sectionPath: "ffmpeg", - defaultConfig: getSectionConfig("ffmpeg", "camera"), -}); - -export default FfmpegSection; diff --git a/web/src/components/config-form/sections/GenaiSection.tsx b/web/src/components/config-form/sections/GenaiSection.tsx deleted file mode 100644 index c7eb2aaa1..000000000 --- a/web/src/components/config-form/sections/GenaiSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// GenAI Section Component -// Global GenAI configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const GenaiSection = createConfigSection({ - sectionPath: "genai", - defaultConfig: getSectionConfig("genai", "global"), -}); - -export default GenaiSection; diff --git a/web/src/components/config-form/sections/LiveSection.tsx b/web/src/components/config-form/sections/LiveSection.tsx deleted file mode 100644 index 20171d20c..000000000 --- a/web/src/components/config-form/sections/LiveSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Live Section Component -// Reusable for both global and camera-level live settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const LiveSection = createConfigSection({ - sectionPath: "live", - defaultConfig: getSectionConfig("live", "camera"), -}); - -export default LiveSection; diff --git a/web/src/components/config-form/sections/LoggerSection.tsx b/web/src/components/config-form/sections/LoggerSection.tsx deleted file mode 100644 index 4cb690992..000000000 --- a/web/src/components/config-form/sections/LoggerSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Logger Section Component -// Global logger configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const LoggerSection = createConfigSection({ - sectionPath: "logger", - defaultConfig: getSectionConfig("logger", "global"), -}); - -export default LoggerSection; diff --git a/web/src/components/config-form/sections/LprSection.tsx b/web/src/components/config-form/sections/LprSection.tsx deleted file mode 100644 index 6eea7166e..000000000 --- a/web/src/components/config-form/sections/LprSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// License Plate Recognition Section Component -// Camera-level LPR settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const LprSection = createConfigSection({ - sectionPath: "lpr", - defaultConfig: getSectionConfig("lpr", "camera"), -}); - -export default LprSection; diff --git a/web/src/components/config-form/sections/ModelSection.tsx b/web/src/components/config-form/sections/ModelSection.tsx deleted file mode 100644 index 2c3587e1d..000000000 --- a/web/src/components/config-form/sections/ModelSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Model Section Component -// Global model configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const ModelSection = createConfigSection({ - sectionPath: "model", - defaultConfig: getSectionConfig("model", "global"), -}); - -export default ModelSection; diff --git a/web/src/components/config-form/sections/MotionSection.tsx b/web/src/components/config-form/sections/MotionSection.tsx deleted file mode 100644 index d688476cc..000000000 --- a/web/src/components/config-form/sections/MotionSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Motion Section Component -// Reusable for both global and camera-level motion settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const MotionSection = createConfigSection({ - sectionPath: "motion", - defaultConfig: getSectionConfig("motion", "camera"), -}); - -export default MotionSection; diff --git a/web/src/components/config-form/sections/MqttSection.tsx b/web/src/components/config-form/sections/MqttSection.tsx deleted file mode 100644 index 6ee1e9ce7..000000000 --- a/web/src/components/config-form/sections/MqttSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// MQTT Section Component -// Global MQTT configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const MqttSection = createConfigSection({ - sectionPath: "mqtt", - defaultConfig: getSectionConfig("mqtt", "global"), -}); - -export default MqttSection; diff --git a/web/src/components/config-form/sections/NetworkingSection.tsx b/web/src/components/config-form/sections/NetworkingSection.tsx deleted file mode 100644 index 1d9167116..000000000 --- a/web/src/components/config-form/sections/NetworkingSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Networking Section Component -// Global networking configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const NetworkingSection = createConfigSection({ - sectionPath: "networking", - defaultConfig: getSectionConfig("networking", "global"), -}); - -export default NetworkingSection; diff --git a/web/src/components/config-form/sections/NotificationsSection.tsx b/web/src/components/config-form/sections/NotificationsSection.tsx deleted file mode 100644 index 265a199af..000000000 --- a/web/src/components/config-form/sections/NotificationsSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Notifications Section Component -// Reusable for both global and camera-level notification settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const NotificationsSection = createConfigSection({ - sectionPath: "notifications", - defaultConfig: getSectionConfig("notifications", "camera"), -}); - -export default NotificationsSection; diff --git a/web/src/components/config-form/sections/ObjectsSection.tsx b/web/src/components/config-form/sections/ObjectsSection.tsx deleted file mode 100644 index 97f68a2a5..000000000 --- a/web/src/components/config-form/sections/ObjectsSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Objects Section Component -// Reusable for both global and camera-level objects settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const ObjectsSection = createConfigSection({ - sectionPath: "objects", - defaultConfig: getSectionConfig("objects", "camera"), -}); - -export default ObjectsSection; diff --git a/web/src/components/config-form/sections/OnvifSection.tsx b/web/src/components/config-form/sections/OnvifSection.tsx deleted file mode 100644 index 4fc028cc8..000000000 --- a/web/src/components/config-form/sections/OnvifSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// ONVIF Section Component -// Camera-level ONVIF and autotracking settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const OnvifSection = createConfigSection({ - sectionPath: "onvif", - defaultConfig: getSectionConfig("onvif", "camera"), -}); - -export default OnvifSection; diff --git a/web/src/components/config-form/sections/ProxySection.tsx b/web/src/components/config-form/sections/ProxySection.tsx deleted file mode 100644 index 2e86d18f9..000000000 --- a/web/src/components/config-form/sections/ProxySection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Proxy Section Component -// Global proxy configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const ProxySection = createConfigSection({ - sectionPath: "proxy", - defaultConfig: getSectionConfig("proxy", "global"), -}); - -export default ProxySection; diff --git a/web/src/components/config-form/sections/RecordSection.tsx b/web/src/components/config-form/sections/RecordSection.tsx deleted file mode 100644 index d2adf488e..000000000 --- a/web/src/components/config-form/sections/RecordSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Record Section Component -// Reusable for both global and camera-level record settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const RecordSection = createConfigSection({ - sectionPath: "record", - defaultConfig: getSectionConfig("record", "camera"), -}); - -export default RecordSection; diff --git a/web/src/components/config-form/sections/ReviewSection.tsx b/web/src/components/config-form/sections/ReviewSection.tsx deleted file mode 100644 index 33618eece..000000000 --- a/web/src/components/config-form/sections/ReviewSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Review Section Component -// Reusable for both global and camera-level review settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const ReviewSection = createConfigSection({ - sectionPath: "review", - defaultConfig: getSectionConfig("review", "camera"), -}); - -export default ReviewSection; diff --git a/web/src/components/config-form/sections/SemanticSearchSection.tsx b/web/src/components/config-form/sections/SemanticSearchSection.tsx deleted file mode 100644 index 12df9c31b..000000000 --- a/web/src/components/config-form/sections/SemanticSearchSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Semantic Search Section Component -// Camera-level semantic search trigger settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const SemanticSearchSection = createConfigSection({ - sectionPath: "semantic_search", - defaultConfig: getSectionConfig("semantic_search", "camera"), -}); - -export default SemanticSearchSection; diff --git a/web/src/components/config-form/sections/SnapshotsSection.tsx b/web/src/components/config-form/sections/SnapshotsSection.tsx deleted file mode 100644 index d61a0a931..000000000 --- a/web/src/components/config-form/sections/SnapshotsSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Snapshots Section Component -// Reusable for both global and camera-level snapshots settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const SnapshotsSection = createConfigSection({ - sectionPath: "snapshots", - defaultConfig: getSectionConfig("snapshots", "camera"), -}); - -export default SnapshotsSection; diff --git a/web/src/components/config-form/sections/TelemetrySection.tsx b/web/src/components/config-form/sections/TelemetrySection.tsx deleted file mode 100644 index 8f17f481b..000000000 --- a/web/src/components/config-form/sections/TelemetrySection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Telemetry Section Component -// Global telemetry configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const TelemetrySection = createConfigSection({ - sectionPath: "telemetry", - defaultConfig: getSectionConfig("telemetry", "global"), -}); - -export default TelemetrySection; diff --git a/web/src/components/config-form/sections/TimestampSection.tsx b/web/src/components/config-form/sections/TimestampSection.tsx deleted file mode 100644 index 9835a22a3..000000000 --- a/web/src/components/config-form/sections/TimestampSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// Timestamp Section Component -// Reusable for both global and camera-level timestamp_style settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const TimestampSection = createConfigSection({ - sectionPath: "timestamp_style", - defaultConfig: getSectionConfig("timestamp_style", "camera"), -}); - -export default TimestampSection; diff --git a/web/src/components/config-form/sections/TlsSection.tsx b/web/src/components/config-form/sections/TlsSection.tsx deleted file mode 100644 index 261c476d2..000000000 --- a/web/src/components/config-form/sections/TlsSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// TLS Section Component -// Global TLS configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const TlsSection = createConfigSection({ - sectionPath: "tls", - defaultConfig: getSectionConfig("tls", "global"), -}); - -export default TlsSection; diff --git a/web/src/components/config-form/sections/UiSection.tsx b/web/src/components/config-form/sections/UiSection.tsx deleted file mode 100644 index 72736788b..000000000 --- a/web/src/components/config-form/sections/UiSection.tsx +++ /dev/null @@ -1,12 +0,0 @@ -// UI Section Component -// Global UI configuration settings - -import { createConfigSection } from "./BaseSection"; -import { getSectionConfig } from "../sectionConfigs"; - -export const UiSection = createConfigSection({ - sectionPath: "ui", - defaultConfig: getSectionConfig("ui", "global"), -}); - -export default UiSection;