Remove animation

This commit is contained in:
Hristo Nedelkov 2023-08-11 09:52:23 +03:00
parent c89e6e1c47
commit 1c8a5f2cad
2 changed files with 2 additions and 2 deletions

View File

@ -97,8 +97,6 @@ function Content() {
Discover Nodes
</button>
</article>
<DeviceStorageHealth storage={60} maxStorage={100} />
<DeviceCPULoad load={[13, 32, 24, 1, 49, 90, 13, 32, 24, 1, 49, 90]} />
</div>
)
}

View File

@ -22,6 +22,8 @@ const StandardGauge = ({ data }: StandardGaugeProps) => (
arcLinkLabelsColor={{ from: 'color' }}
enableArcLabels={false}
legends={[]}
motionConfig="gentle" // Define transition style
animate={false} // Enable animation
/>
)