ui: fix gpu frequency counter track

The name column is unnecessary and not longer exists anyway

Bug: 146197570
Change-Id: I2a24864e6a79f04b317da90de6d12c0fb85de5a6
diff --git a/ui/src/tracks/gpu_freq/controller.ts b/ui/src/tracks/gpu_freq/controller.ts
index 76a35fd..a8bafd6 100644
--- a/ui/src/tracks/gpu_freq/controller.ts
+++ b/ui/src/tracks/gpu_freq/controller.ts
@@ -49,7 +49,6 @@
           as select
             ts,
             lead(ts) over (order by ts) - ts as dur,
-            name as freq_name,
             value as freq_value
           from counter
           where track_id = ${this.config.trackId};