fix loading bug on overview stats

This commit is contained in:
Jamie Pine 2022-06-08 18:09:54 -07:00
parent 85289a6104
commit ef639e79fb

View file

@ -166,7 +166,7 @@ export const OverviewScreen = () => {
key={key}
title={StatItemNames[key as keyof Statistics]!}
bytes={value}
isLoading={isStatisticsLoading}
isLoading={appProps?.demoMode === true ? false : isStatisticsLoading}
/>
);
})}