Disable challenges

This commit is contained in:
James Grugett 2022-08-06 17:53:53 -07:00
parent 1aed9bb364
commit 24655c0d7f

View File

@ -1,3 +1,5 @@
import { IS_PRIVATE_MANIFOLD } from './envs/constants'
export type Challenge = {
// The link to send: https://manifold.markets/challenges/username/market-slug/{slug}
// Also functions as the unique id for the link.
@ -60,4 +62,4 @@ export type Acceptance = {
createdTime: number
}
export const CHALLENGES_ENABLED = true
export const CHALLENGES_ENABLED = !IS_PRIVATE_MANIFOLD