diff --git a/src/deck/slides/AskSlide.vue b/src/deck/slides/AskSlide.vue index 4b5fe19..3816549 100644 --- a/src/deck/slides/AskSlide.vue +++ b/src/deck/slides/AskSlide.vue @@ -4,15 +4,20 @@ import Icon from '../components/Icon.vue' import { brand, investorAsk, pnl, fmtUsd } from '../data' const pct = (n: number) => Math.round(n * 100) -// annual profit share per option, on the recomputed yearly profit -const options = investorAsk.options.map((o) => ({ ...o, annual: Math.round(pnl.yearlyProfit * o.equity) })) +// annual profit share per option, on the recomputed yearly profit. +// Number them so the ask reads as a choice ("which way in?"), not a menu of two. +const options = investorAsk.options.map((o, i) => ({ + ...o, + choice: `Option ${i + 1}`, + annual: Math.round(pnl.yearlyProfit * o.equity), +}))