Merged
Conversation
…ersal dashboard comp
Shazzz135
approved these changes
Feb 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request refactors the main app routing and reorganizes the codebase to improve modularity and maintainability. It removes several old or duplicate components, consolidates dashboard and availability features under their respective feature folders, and updates routing accordingly.
Routing and Feature Consolidation:
App.tsxto use new, feature-scoped components for dashboards and availability, removing legacy or duplicate routes and components. (frontend/src/App.tsx[1] [2] [3]Component Cleanup and Removal:
Homecomponent, which is no longer used in the routing. (frontend/src/components/Home.tsxfrontend/src/components/Home.tsxL1-L25)InterviewerAvailabilitycomponent in favor of the newAvailabilitycomponent under the dashboard feature. (frontend/src/components/InterviewerAvailability.tsxfrontend/src/components/InterviewerAvailability.tsxL1-L292)AdminDashboardcomponent, as the dashboard logic is now handled in the new consolidatedDashboardcomponent. (frontend/src/components/dashboards/AdminDashboard.tsxfrontend/src/components/dashboards/AdminDashboard.tsxL1-L113)