diff --git a/.gitignore b/.gitignore index 08a0be9..ad3aae1 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,4 @@ node_modules/ build/ # macOS -.DS_Store5 \ No newline at end of file +.DS_Store diff --git a/src/components/gallery/imageGallery/ImageModal.svelte b/src/components/gallery/imageGallery/ImageModal.svelte index 4b7306a..0d7626d 100644 --- a/src/components/gallery/imageGallery/ImageModal.svelte +++ b/src/components/gallery/imageGallery/ImageModal.svelte @@ -4,6 +4,7 @@ import { deleteImageFromWNFS } from '$lib/gallery' import { galleryStore } from '../../../stores' import type { Gallery, Image } from '$lib/gallery' + import { fissionServerUrl } from '$lib/app-info' export let image: Image export let isModalOpen: boolean = false @@ -125,7 +126,7 @@ {/if} {`Image: @@ -140,7 +141,7 @@
diff --git a/src/lib/app-info.ts b/src/lib/app-info.ts index 126facd..2b9275c 100644 --- a/src/lib/app-info.ts +++ b/src/lib/app-info.ts @@ -2,3 +2,4 @@ export const appName = 'Awesome Webnative App' export const appDescription = 'This is another awesome Webnative app.' export const appURL = 'https://webnative.netlify.app' export const appImageURL = `${appURL}/preview.png` +export const fissionServerUrl = 'runfission.com'