From 4e67d493437e1c08e3f4de20c027c795a09b9e69 Mon Sep 17 00:00:00 2001 From: Sam Lavigne Date: Fri, 20 Jun 2025 21:50:37 -0400 Subject: [PATCH] clean up: remove unused distance prop & prettier format --- src/App.svelte | 23 +++++++++++------------ src/Cop.svelte | 4 +--- 2 files changed, 12 insertions(+), 15 deletions(-) diff --git a/src/App.svelte b/src/App.svelte index 8a899ea..9a8ee1d 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -227,26 +227,25 @@

LAPD Face Search

Search over 9,000 LAPD headshots

Face recognition happens on your device and images are not uploaded. -
Blurry, low-resolution photos will not match. +
Blurry, low-resolution photos will not match.

{#if !loaded}
- +
{/if} @@ -294,7 +293,7 @@
{#each matches as cop}
- +
{/each}
@@ -450,7 +449,7 @@ font-weight: bold; font-size: 1.2rem; transition: all 0.2s ease-in-out; - box-shadow: 0 0 8px rgba(0, 0, 0, 1.0); + box-shadow: 0 0 8px rgba(0, 0, 0, 1); } .about-link a:hover { @@ -489,7 +488,7 @@ cursor: not-allowed !important; animation: pulse 1.5s ease-in-out infinite; } - + .loading-label:hover { background-color: #666 !important; color: #999 !important; diff --git a/src/Cop.svelte b/src/Cop.svelte index 15d3c6b..f76a589 100644 --- a/src/Cop.svelte +++ b/src/Cop.svelte @@ -1,7 +1,5 @@