Update src/components/DeviceMemoryHealth.tsx

Co-authored-by: Rickard Andersson <gonz@severnatazvezda.com>
This commit is contained in:
Hristo Nedelkov 2023-08-14 12:22:05 +03:00 committed by GitHub
parent df6963a752
commit be2d75f849
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@ const DeviceMemory = ({ currentMemory, maxMemory }: DeviceMemoryProps) => {
</IconText>
{message === 'Poor' && (
<Text size={13} color="#E95460">
{((currentLoad / maxMemory) * 100).toFixed(0)}% Uttilization
{((currentLoad / maxMemory) * 100).toFixed(0)}% Utilization
</Text>
)}
</XStack>