From 4f6138d97d556fff2863fd326a3387adff48598c Mon Sep 17 00:00:00 2001 From: Harsh Shah Date: Tue, 4 Apr 2023 11:39:57 +0530 Subject: [PATCH] Fix : Sample File Size Unit Sample data had size label showing wrong memory units 13k instead of 13KB 2.8mb instead of 2.8MB small b corresponds to bits and this would change entire meaning of file so fixed it --- src/shared/prerendered-app/Intro/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/shared/prerendered-app/Intro/index.tsx b/src/shared/prerendered-app/Intro/index.tsx index a2deb8f9..d4b285ee 100644 --- a/src/shared/prerendered-app/Intro/index.tsx +++ b/src/shared/prerendered-app/Intro/index.tsx @@ -24,28 +24,28 @@ import SlideOnScroll from './SlideOnScroll'; const demos = [ { description: 'Large photo', - size: '2.8mb', + size: '2.8MB', filename: 'photo.jpg', url: largePhoto, iconUrl: largePhotoIcon, }, { description: 'Artwork', - size: '2.9mb', + size: '2.9MB', filename: 'art.jpg', url: artwork, iconUrl: artworkIcon, }, { description: 'Device screen', - size: '1.6mb', + size: '1.6MB', filename: 'pixel3.png', url: deviceScreen, iconUrl: deviceScreenIcon, }, { description: 'SVG icon', - size: '13k', + size: '13KB', filename: 'squoosh.svg', url: logo, iconUrl: logoIcon,