Skip to content

Commit 1483a03

Browse files
Updated Money raised
1 parent 11c2d04 commit 1483a03

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/components/MoneyRaised.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import { isChromaticEnv } from '../utils/featureFlags'
66

77
// These must match the new tab page's numbers.
88
// Eventually call the API instead of hard-coding.
9-
const MONEY_RAISED = 1900000.0 // Also update in useMoneyRaised.js
10-
const MONEY_RAISED_UPDATE_TIME = moment('2025-03-11T21:00:00.000Z')
11-
const DOLLARS_PER_DAY_RATE = 380.0
9+
const MONEY_RAISED = 1980856.0 // Also update in useMoneyRaised.js
10+
const MONEY_RAISED_UPDATE_TIME = moment('2026-10-10T21:00:00.000Z')
11+
const DOLLARS_PER_DAY_RATE = 310.0
1212

1313
// todo: Turn this into a functional component so we can just reuse the hook here
1414
class MoneyRaised extends React.Component {

src/hooks/useMoneyRaised.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { isChromaticEnv } from '../utils/featureFlags'
44

55
// These must match the new tab page's numbers.
66
// Eventually call the API instead of hard-coding.
7-
const MONEY_RAISED = 1900000.0 // Also update in src/components/MoneyRaised.js
8-
const MONEY_RAISED_UPDATE_TIME = moment('2025-03-11T21:00:00.000Z')
9-
const DOLLARS_PER_DAY_RATE = 380.0
7+
const MONEY_RAISED = 1980856.0 // Also update in src/components/MoneyRaised.js
8+
const MONEY_RAISED_UPDATE_TIME = moment('2026-10-10T21:00:00.000Z')
9+
const DOLLARS_PER_DAY_RATE = 310.0
1010

1111
const useMoneyRaised = () => {
1212
const [moneyRaised, setMoneyRaised] = useState(null)

0 commit comments

Comments
 (0)