diff --git a/package-lock.json b/package-lock.json index 9da149c..3cd9607 100644 --- a/package-lock.json +++ b/package-lock.json @@ -776,9 +776,6 @@ "cpu": [ "arm" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -792,9 +789,6 @@ "cpu": [ "arm" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -808,9 +802,6 @@ "cpu": [ "arm64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -824,9 +815,6 @@ "cpu": [ "arm64" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -840,9 +828,6 @@ "cpu": [ "loong64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -856,9 +841,6 @@ "cpu": [ "loong64" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -872,9 +854,6 @@ "cpu": [ "ppc64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -888,9 +867,6 @@ "cpu": [ "ppc64" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -904,9 +880,6 @@ "cpu": [ "riscv64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -920,9 +893,6 @@ "cpu": [ "riscv64" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -936,9 +906,6 @@ "cpu": [ "s390x" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -952,9 +919,6 @@ "cpu": [ "x64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -968,9 +932,6 @@ "cpu": [ "x64" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -1403,9 +1364,6 @@ "cpu": [ "arm64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1422,9 +1380,6 @@ "cpu": [ "arm64" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -1441,9 +1396,6 @@ "cpu": [ "x64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1460,9 +1412,6 @@ "cpu": [ "x64" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -2211,9 +2160,6 @@ "cpu": [ "arm64" ], - "libc": [ - "glibc" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -2234,9 +2180,6 @@ "cpu": [ "arm64" ], - "libc": [ - "musl" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -2257,9 +2200,6 @@ "cpu": [ "x64" ], - "libc": [ - "glibc" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -2280,9 +2220,6 @@ "cpu": [ "x64" ], - "libc": [ - "musl" - ], "license": "MPL-2.0", "optional": true, "os": [ diff --git a/src/routes/user/[uuid]/+page.svelte b/src/routes/user/[uuid]/+page.svelte index 80d1f51..c5e0be0 100644 --- a/src/routes/user/[uuid]/+page.svelte +++ b/src/routes/user/[uuid]/+page.svelte @@ -4,7 +4,7 @@ import { page } from '$app/state'; import { MediaQuery } from 'svelte/reactivity'; import 'maplibre-gl/dist/maplibre-gl.css'; -const large = new MediaQuery('min-width: 1024px'); +const large = new MediaQuery('(min-width: 1024px)'); let {data, error} = $props() let ratings = $derived(data.data); @@ -127,8 +127,10 @@ $inspect(large.current); {#if !large.current} - {rating?.notes || '-'} + {rating?.notes || '-'} + {#if page.params.uuid === '$' + user.id}
+ {/if} {/if} @@ -136,7 +138,7 @@ $inspect(large.current); {:else} - No ratings yet. + No ratings yet. {/if}