From 09dd6e90962edefb5c4d704c286832fa87162657 Mon Sep 17 00:00:00 2001
From: ValueOn AG
Date: Sun, 15 Feb 2026 09:32:07 +0100
Subject: [PATCH] fix: add missing teamsbot settings route in App.tsx
The /settings route for teamsbot feature instances was missing from App.tsx,
causing a blank page when navigating to the settings view.
Co-authored-by: Cursor
---
src/App.tsx | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/App.tsx b/src/App.tsx
index fec828b..a37f059 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -163,6 +163,7 @@ function App() {
{/* Teams Bot Feature Views */}
} />
+ } />
{/* Catch-all für unbekannte Sub-Pfade */}
} />