552a4baadd web-uiJeremy Magland 1export const formatNumber = (num: number, decimals = 2) => { 2 return new Intl.NumberFormat("en-US", { 3 minimumFractionDigits: decimals, 4 maximumFractionDigits: decimals, 8export const formatSize = (bytes: number) => { 9 const mb = bytes / (1024 * 1024); 10 return `${formatNumber(mb)} MB`;