Skip to content

Commit f082a20

Browse files
committed
Update timer props
1 parent cc5ad20 commit f082a20

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

frontend/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ function App() {
4848
</Route>
4949
<Route path="*" element={<PageNotFound />} />
5050
</Route>
51-
<Route path="signup" element={<SignUp />}></Route>
52-
<Route path="login" element={<LogIn />}></Route>
51+
<Route path="signup" element={<SignUp />} />
52+
<Route path="login" element={<LogIn />} />
5353
</Routes>
5454
</AuthProvider>
5555
);

frontend/src/components/Timer/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,15 @@ const Timer: React.FC<CircularProgressProps & TimerProps> = (props) => {
2222
value={100}
2323
sx={{ opacity: 0.4 }}
2424
thickness={thickness}
25+
{...rest}
2526
/>
2627
<CircularProgress
2728
variant="determinate"
2829
value={percentage}
2930
size={size}
3031
sx={{ position: "absolute" }}
3132
thickness={thickness}
33+
{...rest}
3234
/>
3335
<Box
3436
sx={{

0 commit comments

Comments
 (0)