From 4c1bdf5fafccff7767b04efcfd4068d0df6014f5 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Fri, 14 Jun 2024 13:00:22 +0000 Subject: [PATCH] Profile picture fix --- src/lib/components/InfoModal.svelte | 9 +++++++-- src/lib/config.ts | 2 ++ src/routes/profile/+page.svelte | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/lib/components/InfoModal.svelte b/src/lib/components/InfoModal.svelte index ea8e428..8c2e59b 100644 --- a/src/lib/components/InfoModal.svelte +++ b/src/lib/components/InfoModal.svelte @@ -4,7 +4,7 @@ const dispatch = createEventDispatcher(); import { onMount } from "svelte"; let modal: HTMLDialogElement; - import { appVersion, copyrightYear } from "$lib/config"; + import { appVersion, copyrightYear, versionChangelog } from "$lib/config"; onMount(() => { modal = document.getElementById("my_modal_1") as HTMLDialogElement; @@ -30,7 +30,12 @@