passing query params in url throws error
Unanswered
astro posted this in #help-forum
astroOP
im on client side btw("use client")
<Button type="button" variant="outline" asChild>
<Link
href={{
pathname: "/order",
query: { image: imageData.name },
}}
>
Create Order
</Link>
</Button>1 Reply
astroOP