We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a8cb84 commit 00b0d66Copy full SHA for 00b0d66
1 file changed
frontend/components/Dashboard.tsx
@@ -1,7 +1,9 @@
1
import React, { useEffect, useState } from 'react';
2
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer } from 'recharts';
3
import { AlertCircle, Shield, Activity } from 'lucide-react';
4
-import ThreatGlobe from './ThreatGlobe';
+import dynamic from 'next/dynamic';
5
+
6
+const ThreatGlobe = dynamic(() => import('./ThreatGlobe'), { ssr: false });
7
8
interface Log {
9
id: number;
0 commit comments