--- interface Props { id: string; postscript?: string } const { id, postscript } = Astro.props; const link = new URL(`https://store.steampowered.com/widget/${id}/`) if (postscript) { link.searchParams.set("t", postscript) } ---