Browse Source

remove default kinds 0 and 3 for visualization

master
limina1 8 months ago
parent
commit
a1ef76cd3e
  1. 3
      src/lib/stores/visualizationConfig.ts

3
src/lib/stores/visualizationConfig.ts

@ -28,11 +28,10 @@ export interface VisualizationConfig { @@ -28,11 +28,10 @@ export interface VisualizationConfig {
// Default configurations for common event kinds
const DEFAULT_EVENT_CONFIGS: EventKindConfig[] = [
{ kind: 0, limit: 5, enabled: false }, // Metadata events (profiles) - controls how many profiles to display
{ kind: 3, limit: 0, depth: 0, enabled: false }, // Follow lists - limit 0 = don't fetch, >0 = fetch follow lists
{ kind: 30040, limit: 20, nestedLevels: 1, enabled: true },
{ kind: 30041, limit: 20, enabled: false },
{ kind: 30818, limit: 20, enabled: false },
{ kind: 30023, limit: 20, enabled: false },
];
function createVisualizationConfig() {

Loading…
Cancel
Save