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

# Replace fake version notification
content = content.replace(
    "GenPlatform.ai has been updated to version 2.1.0 with new features and improvements.",
    "GenPlatform.ai is running on app.gen3.ai with live data from Bridge API."
)

# Replace fake CPU alert
content = content.replace(
    "CPU usage has been above 85% for the past 10 minutes. Consider checking running processes.",
    ""
)

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