export function redPercentMoneyMath(lineSubtotalAgorot: number, platformFeePct: number) {
  return lineSubtotalAgorot * platformFeePct * 0.01;
}
