Update src/components/DeviceStorageHealth.tsx

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

View File

@ -74,7 +74,7 @@ const DeviceStorageHealth: React.FC<DeviceStorageHealthProps> = ({ storage, maxS
</IconText>
{message === 'Poor' && (
<Text size={13} color="#E95460">
{((storage / maxStorage) * 100).toFixed(0)}% Uttilization
{((storage / maxStorage) * 100).toFixed(0)}% Utilization
</Text>
)}
</XStack>