From 517128fd99863ea203e39268ffa6c1ff093bcbd0 Mon Sep 17 00:00:00 2001 From: paul Date: Thu, 24 Jul 2025 14:16:39 +0200 Subject: [PATCH] fix: add missing route for feedback management page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added /admin/events/:id/feedback route to App.tsx - This fixes the empty page issue when navigating to feedback management - EventFeedbackPage component was already implemented but route was missing 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- frontend/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index eb908e3..04cd202 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -16,6 +16,7 @@ import { EventsListPage, CreateEventPageEnhanced as CreateEventPage, EventDetailsPage, + EventFeedbackPage, EmailConfigPage, ArchivesPage, AnalyticsPage, @@ -120,6 +121,7 @@ function App() { } /> } /> } /> + } /> } /> } /> } />