Commit
ยท
957f69f
1
Parent(s):
ab600b2
๐ Fix currency
Browse files
src/routes/+layout.svelte
CHANGED
@@ -48,7 +48,7 @@
|
|
48 |
<meta property="og:url" content="{$page.url.protocol}//{$page.url.host}{path}" />
|
49 |
{#if $page.data.price}
|
50 |
<meta property="product:price:amount" content={$page.data.price} />
|
51 |
-
<meta property="product:price:currency" content="
|
52 |
{/if}
|
53 |
</svelte:head>
|
54 |
|
|
|
48 |
<meta property="og:url" content="{$page.url.protocol}//{$page.url.host}{path}" />
|
49 |
{#if $page.data.price}
|
50 |
<meta property="product:price:amount" content={$page.data.price} />
|
51 |
+
<meta property="product:price:currency" content="EUR" />
|
52 |
{/if}
|
53 |
</svelte:head>
|
54 |
|