deprecation warning for numeric markets
This commit is contained in:
parent
d9f0428e41
commit
dd4444caf9
|
@ -39,6 +39,7 @@ import { FeedBet } from 'web/components/feed/feed-bets'
|
||||||
import { useIsIframe } from 'web/hooks/use-is-iframe'
|
import { useIsIframe } from 'web/hooks/use-is-iframe'
|
||||||
import ContractEmbedPage from '../embed/[username]/[contractSlug]'
|
import ContractEmbedPage from '../embed/[username]/[contractSlug]'
|
||||||
import { useBets } from 'web/hooks/use-bets'
|
import { useBets } from 'web/hooks/use-bets'
|
||||||
|
import { AlertBox } from 'web/components/alert-box'
|
||||||
|
|
||||||
export const getStaticProps = fromPropz(getStaticPropz)
|
export const getStaticProps = fromPropz(getStaticPropz)
|
||||||
export async function getStaticPropz(props: {
|
export async function getStaticPropz(props: {
|
||||||
|
@ -189,6 +190,12 @@ export function ContractPageContent(
|
||||||
bets={bets}
|
bets={bets}
|
||||||
comments={comments ?? []}
|
comments={comments ?? []}
|
||||||
/>
|
/>
|
||||||
|
{isNumeric && (
|
||||||
|
<AlertBox
|
||||||
|
title="Warning"
|
||||||
|
text="Numeric markets were introduced as an experimental feature and are now deprecated."
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
{outcomeType === 'FREE_RESPONSE' && (
|
{outcomeType === 'FREE_RESPONSE' && (
|
||||||
<>
|
<>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user