File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
start-basic-cloudflare/src/routes Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ function PostComponent() {
2222 < Link
2323 to = "/posts/$postId/deep"
2424 params = { {
25- postId : post . id ,
25+ postId : String ( post . id ) ,
2626 } }
2727 activeProps = { { className : 'text-black font-bold' } }
2828 className = "inline-block py-1 text-blue-800 hover:text-blue-600"
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ function PostsComponent() {
1919 < Link
2020 to = "/posts/$postId"
2121 params = { {
22- postId : post . id ,
22+ postId : String ( post . id ) ,
2323 } }
2424 className = "block py-1 text-blue-800 hover:text-blue-600"
2525 activeProps = { { className : 'text-black font-bold' } }
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ function PostComponent() {
2222 < Link
2323 to = "/posts/$postId/deep"
2424 params = { {
25- postId : post . id ,
25+ postId : String ( post . id ) ,
2626 } }
2727 activeProps = { { className : 'text-black font-bold' } }
2828 className = "inline-block py-1 text-blue-800 hover:text-blue-600"
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ function PostsComponent() {
1919 < Link
2020 to = "/posts/$postId"
2121 params = { {
22- postId : post . id ,
22+ postId : String ( post . id ) ,
2323 } }
2424 className = "block py-1 text-blue-800 hover:text-blue-600"
2525 activeProps = { { className : 'text-black font-bold' } }
You can’t perform that action at this time.
0 commit comments