diff --git a/web/src/lib/components/trail/map_with_elevation_multiple.svelte b/web/src/lib/components/trail/map_with_elevation_multiple.svelte
index 17f3cf11..498191b8 100644
--- a/web/src/lib/components/trail/map_with_elevation_multiple.svelte
+++ b/web/src/lib/components/trail/map_with_elevation_multiple.svelte
@@ -15,7 +15,6 @@
import { createEventDispatcher, onMount } from "svelte";
import { _ } from "svelte-i18n";
import Dropdown from "../base/dropdown.svelte";
- import { trail } from "$lib/stores/trail_store";
export let trails: Trail[];
export let map: any | null = null;
diff --git a/web/src/routes/profile/+page.svelte b/web/src/routes/profile/+page.svelte
index 2c479202..8e96368c 100644
--- a/web/src/routes/profile/+page.svelte
+++ b/web/src/routes/profile/+page.svelte
@@ -144,7 +144,7 @@
(acc[date] || 0) + ((log as any)[barChartSelectedValue] ?? 0);
if (barChartSelectedValue === "distance") {
acc[date] = acc[date] / 1000;
- }else if(barChartSelectedValue === "duration") {
+ } else if (barChartSelectedValue === "duration") {
acc[date] = acc[date] / 60 / 60;
}
if ($page.data.settings?.unit !== "metric") {
@@ -228,10 +228,37 @@
+ {#if $currentUser}
+
+

+
+
+ {$currentUser.username}
+
+
+ Joined:
+ {new Date($currentUser.created ?? "").toLocaleDateString(
+ undefined,
+ {
+ month: "2-digit",
+ day: "2-digit",
+ year: "numeric",
+ timeZone: "UTC",
+ },
+ )}
+
+
+
+ {/if}
updateFilterCategory(e.detail)}
@@ -250,105 +277,16 @@
label={$_("before")}
>
-
-