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 <cursoragent@cursor.com>
This commit is contained in:
parent
02a8bcb19f
commit
09dd6e9096
1 changed files with 1 additions and 0 deletions
|
|
@ -163,6 +163,7 @@ function App() {
|
|||
|
||||
{/* Teams Bot Feature Views */}
|
||||
<Route path="sessions" element={<FeatureViewPage view="sessions" />} />
|
||||
<Route path="settings" element={<FeatureViewPage view="settings" />} />
|
||||
|
||||
{/* Catch-all für unbekannte Sub-Pfade */}
|
||||
<Route path="*" element={<FeatureViewPage view="not-found" />} />
|
||||
|
|
|
|||
Loading…
Reference in a new issue