diff --git a/apps/mobile/app/screens/wrapped/index.tsx b/apps/mobile/app/screens/wrapped/index.tsx index 9c367144f..55292657b 100644 --- a/apps/mobile/app/screens/wrapped/index.tsx +++ b/apps/mobile/app/screens/wrapped/index.tsx @@ -590,6 +590,21 @@ function AttachmentsSlide({ ); } +const MONTHS_IN_ORDER = [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" +]; + // Summary Slide function SummarySlide({ stats, @@ -653,7 +668,7 @@ function SummarySlide({ gap: 10 }} > - {Object.keys(stats.monthlyStats).map((item) => ( + {MONTHS_IN_ORDER.map((item) => ( 0 ? (stats.monthlyStats[item] / maxCount) * 100