chore: add https for product links

This commit is contained in:
Stefan Imhoff
2024-08-21 07:35:19 +02:00
parent 4cf3cc88b9
commit ac207fcf65

View File

@@ -19,7 +19,7 @@ export const ProductLink: FunctionalComponent<Props> = ({
const classes = cx('product', className);
return (
<TextLink class={classes} href={`http://www.amazon.de/gp/product/${asin}`} {...props}>
<TextLink class={classes} href={`https://www.amazon.de/gp/product/${asin}`} {...props}>
{text}
</TextLink>
);