Skip to content

Commit 4771833

Browse files
Merge pull request #4617 from OneCommunityGlobal/Swathi_PR_Review_Team_Analytics_Dashboard
Swathi Fix for PR Review Team Analytics Dashboard - Main landing page gives a ‘Page not found’ Error.
2 parents 8059ceb + bf57c62 commit 4771833

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

src/routes.jsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -917,6 +917,7 @@ export default (
917917
<Route path="/support/login" component={SupportLogin} />
918918
<Route path="/support/dashboard" component={SupportDashboard} />
919919
<Route path="/support/log/:studentId" component={SupportLogViewer} />
920+
{/* PR Routes */}
920921
<ProtectedRoute
921922
path="/pr-team-analytics/popular-prs"
922923
exact
@@ -928,6 +929,18 @@ export default (
928929
component={PRGradingDashboard}
929930
fallback
930931
/>
932+
<ProtectedRoute path="/pr-dashboard/overview" exact component={PRDashboardOverview} />
933+
<ProtectedRoute
934+
path="/pr-dashboard/promotion-eligibility"
935+
exact
936+
component={PRDashboardPromotionEligibility}
937+
/>
938+
<ProtectedRoute
939+
path="/pr-dashboard/top-reviewed-prs"
940+
exact
941+
component={PRDashboardTopReviewedPRs}
942+
/>
943+
<ProtectedRoute path="/pr-dashboard/details" exact component={PRDashboardDetails} />
931944
<Route path="*" component={NotFoundPage} />
932945
</Switch>
933946
</>

0 commit comments

Comments
 (0)