We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b40bbe commit 0e4f052Copy full SHA for 0e4f052
src/content/pages/problems/Timer.tsx
@@ -34,6 +34,7 @@ const Content = styled.div`
34
border-right-width: 0;
35
/* margin-left: 15px; */
36
padding: 6px 15px;
37
+ white-space: nowrap;
38
`
39
40
const Button = styled.button<{
@@ -64,7 +65,7 @@ const Button = styled.button<{
64
65
`}
66
67
-const Clock: FC<{ beta?: boolean }> = ({ beta }) => {
68
+const Timer: FC<{ beta?: boolean }> = ({ beta }) => {
69
const pathnames = location.pathname.split('/').filter(Boolean)
70
const slug = pathnames[1]
71
@@ -400,4 +401,4 @@ const Clock: FC<{ beta?: boolean }> = ({ beta }) => {
400
401
)
402
}
403
-export default Clock
404
+export default Timer
0 commit comments