File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
plugins/qeta/src/components Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export const HomePage = () => (
38
38
< Route path = "/ask" element = { < AskPage /> } />
39
39
< Route path = "/questions/:id" element = { < QuestionPage /> } />
40
40
< Route path = "/tags/:tag" element = { < TagPage /> } />
41
- < Route path = "/user /*" element = { < UserPage /> } />
41
+ < Route path = "/users /*" element = { < UserPage /> } />
42
42
</ Routes >
43
43
</ Page >
44
44
) ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export const QuestionListItem = (props: { question: QuestionResponse }) => {
24
24
) ) }
25
25
< Typography variant = "body2" display = "block" >
26
26
By{ ' ' }
27
- < Link href = { `/qeta/user /${ question . author } ` } > { question . author } </ Link > { ' ' }
27
+ < Link href = { `/qeta/users /${ question . author } ` } > { question . author } </ Link > { ' ' }
28
28
< RelativeTime
29
29
value = { question . created }
30
30
titleFormat = "YYYY/MM/DD HH:mm"
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export const AnswerCard = (props: {
32
32
</ Typography >
33
33
< Box >
34
34
By{ ' ' }
35
- < Link href = { `/qeta/user /${ answer . author } ` } > { answer . author } </ Link >
35
+ < Link href = { `/qeta/users /${ answer . author } ` } > { answer . author } </ Link >
36
36
</ Box >
37
37
</ Grid >
38
38
</ Grid >
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export const QuestionCard = (props: { question: QuestionResponse }) => {
40
40
) ) }
41
41
< Box >
42
42
By{ ' ' }
43
- < Link href = { `/qeta/user /${ question . author } ` } >
43
+ < Link href = { `/qeta/users /${ question . author } ` } >
44
44
{ question . author }
45
45
</ Link >
46
46
</ Box >
You can’t perform that action at this time.
0 commit comments