Skip to content

Commit

Permalink
update donation total
Browse files Browse the repository at this point in the history
  • Loading branch information
EwanLyon committed Jun 28, 2023
1 parent 068d35c commit 28cd8cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/nextjs/pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function padZerosLocaleString(num: number, zeros: number): string {
);
}

const AMOUNT_RAISED = 100000; // $100,000
const AMOUNT_RAISED = 110000; // $110,000

export default function Home() {
const amountRef = useRef<HTMLSpanElement>(null);
Expand Down Expand Up @@ -230,7 +230,7 @@ export default function Home() {
<span className={styles.amount}>
<span className={styles.dollarSymbol}>$</span>
<span ref={amountRef}>
{(100000).toLocaleString()}
{(AMOUNT_RAISED).toLocaleString()}
</span>
</span>
<span>for different charities in Australia.</span>
Expand Down

0 comments on commit 28cd8cc

Please sign in to comment.