Skip to content

Commit

Permalink
Quick color match
Browse files Browse the repository at this point in the history
  • Loading branch information
chadokruse committed Dec 4, 2024
1 parent 9c4de3b commit 6813413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/lib/components/search/Autocomplete.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
const url = `/profiles/v0/${item.ein}-${item.organization_name_slug}`;

Check warning on line 77 in apps/web/src/lib/components/search/Autocomplete.svelte

View workflow job for this annotation

GitHub Actions / Deploy to Cloudflare

'url' is assigned a value but never used
let percentile: number | 'N/A' = item.rank !== undefined ? ((item.rank_total - item.rank) / item.rank_total) * 100 : 'N/A';
return html`<a href="/profiles/v0/${item.ein}-${item.organization_name_slug}" data-sveltekit-reload>
<div class="px-2 py-2 transition-colors duration-100 hover:bg-gray-100">
<div class="px-2 py-2 transition-colors duration-100 hover:bg-slate-100">
<div class="flex items-center justify-between gap-3 py-2">
<div class="w-full min-w-0 ">
<div class="flex items-start justify-between gap-x-3">
Expand Down

0 comments on commit 6813413

Please sign in to comment.