Skip to content

Commit 1e9ac22

Browse files
committed
Fix merge conflict
1 parent a863a63 commit 1e9ac22

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

frontend/src/index.tsx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,10 @@ import ProblemSolver from "./pages/ProblemSolver";
1414

1515
import Landing from "./pages/landing";
1616
import Profile from "./pages/profile";
17-
<<<<<<< HEAD
1817
import CreateAdmin from "./pages/createAdmin";
1918
import MaintainerGuard from "./auth/MaintainerGuard";
20-
=======
2119
import QuestionsManage from "./pages/QuestionsManage";
2220
import QuestionsView from "./pages/QuestionsView";
23-
>>>>>>> master
2421

2522
const root = ReactDOM.createRoot(
2623
document.getElementById("root") as HTMLElement
@@ -83,13 +80,14 @@ root.render(
8380
}
8481
/>
8582
<Route
86-
<<<<<<< HEAD
8783
path="/createadmin"
8884
element={
8985
<MaintainerGuard>
9086
<CreateAdmin />
9187
</MaintainerGuard>
92-
=======
88+
}
89+
/>
90+
<Route
9391
path="/view-questions"
9492
element={
9593
<AuthGuard>
@@ -103,7 +101,6 @@ root.render(
103101
<AdminAuthGuard>
104102
<QuestionsManage />
105103
</AdminAuthGuard>
106-
>>>>>>> master
107104
}
108105
/>
109106
</Routes>

0 commit comments

Comments
 (0)