This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
while displaying the [id] , instead of id i am getting some image. #7374
Replies: 4 comments
-
Hi @laskarDipankar, It's difficult to help you debug this, could you share a repo with us? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Sure, here it is.
https://github.com/mundanecoder/music-composer
…On Fri, Jul 5, 2024 at 9:00 PM Pauline P. Narvas ***@***.***> wrote:
Hi @laskarDipankar <https://github.com/laskarDipankar>,
It's difficult to help you debug this, could you share a repo with us?
—
Reply to this email directly, view it on GitHub
<https://github.com/orgs/vercel/discussions/7374#discussioncomment-9969697>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A3KIQTCCZW2IIPOJ4B33DVTZK232VAVCNFSM6AAAAABKNKFKXWVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TSNRZGY4TO>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
-
if you route to /collection/1 you will see the error
On Fri, Jul 5, 2024 at 11:01 PM Dipankar laskar <
***@***.***> wrote:
… Sure, here it is.
https://github.com/mundanecoder/music-composer
On Fri, Jul 5, 2024 at 9:00 PM Pauline P. Narvas ***@***.***>
wrote:
> Hi @laskarDipankar <https://github.com/laskarDipankar>,
>
> It's difficult to help you debug this, could you share a repo with us?
>
> —
> Reply to this email directly, view it on GitHub
> <https://github.com/orgs/vercel/discussions/7374#discussioncomment-9969697>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/A3KIQTCCZW2IIPOJ4B33DVTZK232VAVCNFSM6AAAAABKNKFKXWVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TSNRZGY4TO>
> .
> You are receiving this because you were mentioned.Message ID:
> ***@***.***>
>
|
Beta Was this translation helpful? Give feedback.
0 replies
-
This discussion was automatically locked because the community moved to a new site. Please join us at vercel.community |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Page to Investigate
Steps to Reproduce
import React from "react";
interface IParams {
id: string;
}
const page = ({ params }: { params: IParams }) => {
const { id } = params;
console.log(id);
return (
page {params.id.toString()} {id}
);
};
export default page;
the issue occurred probably because i was using airstone font which I downloaded externally ,
is there a solution for this . how should i handle params in this scenario.
thanks.
Beta Was this translation helpful? Give feedback.
All reactions