From 5e4e75dfb3c6af9df52cd47db2f0153af3cfda9e Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 3 May 2026 14:24:54 -0500 Subject: [PATCH] fix(about): drop propagation scores stat tile --- lib/microwaveprop_web/live/about_live.ex | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/microwaveprop_web/live/about_live.ex b/lib/microwaveprop_web/live/about_live.ex index 56d460ee..50969a27 100644 --- a/lib/microwaveprop_web/live/about_live.ex +++ b/lib/microwaveprop_web/live/about_live.ex @@ -134,10 +134,6 @@ defmodule MicrowavepropWeb.AboutLive do
Terrain profiles
{format_count(@stats.terrain_profiles)}
-
-
Propagation scores
-
{format_count(@stats.propagation_scores)}
-
Beacons
{format_count(@stats.beacons)}
@@ -233,7 +229,7 @@ defmodule MicrowavepropWeb.AboutLive do # every About page load is wasteful. We use PostgreSQL's pg_class.reltuples # estimate — it's maintained by ANALYZE and is accurate to within a few # percent, which is plenty for "big number on a marketing page." - @estimate_tables ~w(hrrr_profiles propagation_scores surface_observations) + @estimate_tables ~w(hrrr_profiles surface_observations) defp fetch_stats do %{ @@ -244,7 +240,6 @@ defmodule MicrowavepropWeb.AboutLive do hrrr_profiles: count_estimate("hrrr_profiles"), iemre_observations: count_exact("iemre_observations"), terrain_profiles: count_exact("terrain_profiles"), - propagation_scores: count_estimate("propagation_scores"), beacons: count_exact("beacons"), commercial_samples: count_exact("commercial_samples") }