"question" => "market" (controversial!)

This commit is contained in:
mantikoros 2022-07-21 18:17:02 -05:00
parent 80b27fdf6e
commit cded3f50ff
4 changed files with 8 additions and 5 deletions

View File

@ -21,7 +21,7 @@ export const CreateQuestionButton = (props: {
{user ? ( {user ? (
<Link href={`/create${query ? query : ''}`} passHref> <Link href={`/create${query ? query : ''}`} passHref>
<button className={clsx(gradient, createButtonStyle)}> <button className={clsx(gradient, createButtonStyle)}>
{overrideText ? overrideText : 'Create a question'} {overrideText ? overrideText : 'Create a market'}
</button> </button>
</Link> </Link>
) : ( ) : (

View File

@ -24,7 +24,7 @@ export function groupPath(
groupSlug: string, groupSlug: string,
subpath?: subpath?:
| 'edit' | 'edit'
| 'questions' | 'markets'
| 'about' | 'about'
| typeof GROUP_CHAT_SLUG | typeof GROUP_CHAT_SLUG
| 'leaderboards' | 'leaderboards'

View File

@ -29,6 +29,7 @@ import { User } from 'common/user'
import { TextEditor, useTextEditor } from 'web/components/editor' import { TextEditor, useTextEditor } from 'web/components/editor'
import { Checkbox } from 'web/components/checkbox' import { Checkbox } from 'web/components/checkbox'
import { redirectIfLoggedOut } from 'web/lib/firebase/server-auth' import { redirectIfLoggedOut } from 'web/lib/firebase/server-auth'
import { Title } from 'web/components/title'
export const getServerSideProps = redirectIfLoggedOut('/') export const getServerSideProps = redirectIfLoggedOut('/')
@ -64,6 +65,8 @@ export default function Create() {
<Page> <Page>
<div className="mx-auto w-full max-w-2xl"> <div className="mx-auto w-full max-w-2xl">
<div className="rounded-lg px-6 py-4 sm:py-0"> <div className="rounded-lg px-6 py-4 sm:py-0">
<Title className="!mt-0" text="Create a market" />
<form> <form>
<div className="form-control w-full"> <div className="form-control w-full">
<label className="label"> <label className="label">

View File

@ -109,7 +109,7 @@ export async function getStaticPaths() {
const groupSubpages = [ const groupSubpages = [
undefined, undefined,
GROUP_CHAT_SLUG, GROUP_CHAT_SLUG,
'questions', 'markets',
'leaderboards', 'leaderboards',
'about', 'about',
] as const ] as const
@ -226,9 +226,9 @@ export default function GroupPage(props: {
}, },
]), ]),
{ {
title: 'Questions', title: 'Markets',
content: questionsTab, content: questionsTab,
href: groupPath(group.slug, 'questions'), href: groupPath(group.slug, 'markets'),
}, },
{ {
title: 'Leaderboards', title: 'Leaderboards',