astro-tractstack 2.2.5 → 2.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-tractstack",
3
- "version": "2.2.5",
3
+ "version": "2.2.6",
4
4
  "description": "Astro integration for TractStack - the free web press by At Risk Media",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -336,11 +336,6 @@ export default function StoryKeepDashboard_Analytics({
336
336
  ? formatNumber(analytics.pulse.activeVisitors)
337
337
  : '-'}
338
338
  </div>
339
- <div className="mt-1 text-xs text-gray-600">
340
- {analytics.pulse
341
- ? `${formatNumber(analytics.pulse.activeLeads)} Leads, ${formatNumber(analytics.pulse.activeGuests)} Guests`
342
- : 'Live sessions'}
343
- </div>
344
339
  </dd>
345
340
  </div>
346
341
 
@@ -7,8 +7,6 @@ const VERBOSE = false;
7
7
 
8
8
  export interface PulseMetrics {
9
9
  activeVisitors: number;
10
- activeLeads: number;
11
- activeGuests: number;
12
10
  velocity: number;
13
11
  }
14
12