File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function QuoteListAccepted() {
56
56
< > { it . id } </ >
57
57
) : (
58
58
< >
59
- < Link to = { "/quotes/:id" . replace ( ":id" , it . id as string ) } > { it . id } </ Link >
59
+ < Link to = { "/quotes/:id" . replace ( ":id" , it . id ) } > { it . id } </ Link >
60
60
</ >
61
61
) }
62
62
</ span >
@@ -65,7 +65,7 @@ function QuoteListAccepted() {
65
65
size = "sm"
66
66
disabled = { isFetching }
67
67
onClick = { ( ) => {
68
- void navigate ( "/quotes/:id" . replace ( ":id" , it . id as string ) )
68
+ void navigate ( "/quotes/:id" . replace ( ":id" , it . id ) )
69
69
} }
70
70
>
71
71
View
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function QuoteListDenied() {
56
56
< > { it . id } </ >
57
57
) : (
58
58
< >
59
- < Link to = { "/quotes/:id" . replace ( ":id" , it . id as string ) } > { it . id } </ Link >
59
+ < Link to = { "/quotes/:id" . replace ( ":id" , it . id ) } > { it . id } </ Link >
60
60
</ >
61
61
) }
62
62
</ span >
@@ -65,7 +65,7 @@ function QuoteListDenied() {
65
65
size = "sm"
66
66
disabled = { isFetching }
67
67
onClick = { ( ) => {
68
- void navigate ( "/quotes/:id" . replace ( ":id" , it . id as string ) )
68
+ void navigate ( "/quotes/:id" . replace ( ":id" , it . id ) )
69
69
} }
70
70
>
71
71
View
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function QuoteListOffered() {
56
56
< > { it . id } </ >
57
57
) : (
58
58
< >
59
- < Link to = { "/quotes/:id" . replace ( ":id" , it . id as string ) } > { it . id } </ Link >
59
+ < Link to = { "/quotes/:id" . replace ( ":id" , it . id ) } > { it . id } </ Link >
60
60
</ >
61
61
) }
62
62
</ span >
@@ -65,7 +65,7 @@ function QuoteListOffered() {
65
65
size = "sm"
66
66
disabled = { isFetching }
67
67
onClick = { ( ) => {
68
- void navigate ( "/quotes/:id" . replace ( ":id" , it . id as string ) )
68
+ void navigate ( "/quotes/:id" . replace ( ":id" , it . id ) )
69
69
} }
70
70
>
71
71
View
You can’t perform that action at this time.
0 commit comments