Misc fixes

This commit is contained in:
2022-01-18 17:05:11 +01:00
parent 5fd1b4baae
commit 2ec810b932
3 changed files with 2 additions and 4 deletions

View File

@@ -29,7 +29,7 @@
<div class="buttons"> <div class="buttons">
<Button <Button
size="xsmall" size="xsmall"
url="/shop/poster-{location.slug}" url="/shop/poster-{location.slug}#poster"
text="View" text="View"
/> />
<Button <Button

View File

@@ -511,8 +511,6 @@
/** @type {import('@sveltejs/kit').Load} */ /** @type {import('@sveltejs/kit').Load} */
export async function load ({ url, params, fetch, session, stuff }) { export async function load ({ url, params, fetch, session, stuff }) {
console.log(url)
// Query parameters // Query parameters
const queryCountry = url.searchParams.get('country') || defaultCountry const queryCountry = url.searchParams.get('country') || defaultCountry
const querySort = url.searchParams.get('sort') || defaultSort const querySort = url.searchParams.get('sort') || defaultSort

View File

@@ -27,7 +27,7 @@
<Cart /> <Cart />
<div class="cart-notifications"> <div class="notifications">
{#each $cartNotifications as { id, title, name, image } (id)} {#each $cartNotifications as { id, title, name, image } (id)}
<NotificationCart <NotificationCart
title={title} title={title}