with open('src/components/notifications/notification-system.tsx', 'r') as f:
    content = f.read()

# Remove the fake CPU notification entirely
old_cpu = """      {
        id: 'demo-2',
        title: 'High CPU Usage Detected',
        message: '',
        type: 'warning',
        timestamp: new Date(Date.now() - 25 * 60 * 1000).toISOString(),
        read: false,
        source: 'System Monitor',
        persistent: true,
        actions: [
          { label: 'View Details', action: () => console.log('View CPU details') },
          { label: 'Acknowledge', action: () => markAsRead('demo-2') }
        ]
      },"""

content = content.replace(old_cpu, "")

with open('src/components/notifications/notification-system.tsx', 'w') as f:
    f.write(content)
print("CPU notification removed")
