diff --git a/src/lib/components/Image/LazyImgVanilla.svelte b/src/lib/components/Image/LazyImgVanilla.svelte index b8fe5b46..04621fdf 100644 --- a/src/lib/components/Image/LazyImgVanilla.svelte +++ b/src/lib/components/Image/LazyImgVanilla.svelte @@ -110,7 +110,7 @@ onMount(() => { lazyloadInstance = new lazyload({ thresholds: '50px 10%', callback_error: (img) => { - img.setAttribute('src', 'https://i.ibb.co/ZKFtJ25/image-1.png') + img.setAttribute('src', '/output.png') }, callback_enter: handleLineLoader }) diff --git a/src/lib/components/Stripe.svelte b/src/lib/components/Stripe.svelte index 41afa0dc..49063034 100644 --- a/src/lib/components/Stripe.svelte +++ b/src/lib/components/Stripe.svelte @@ -2,12 +2,12 @@ import { createEventDispatcher, onMount } from 'svelte' import { fly } from 'svelte/transition' import { goto } from '$app/navigation' +import { OrdersService } from '$lib/services' import { page } from '$app/stores' import { PrimaryButton } from '$lib/ui' import { toast } from '$lib/utils' import Error from './Error.svelte' import type { PaymentMethod } from './../types' -import { OrdersService } from '$lib/services' const dispatch = createEventDispatcher() diff --git a/static/output.png b/static/output.png new file mode 100644 index 00000000..b6c6ecd1 Binary files /dev/null and b/static/output.png differ