Only RichardHanania can create markets
This commit is contained in:
parent
84b2dc8fbd
commit
80ea611ba8
|
@ -305,6 +305,8 @@ export default function Sidebar(props: { className?: string }) {
|
|||
buttonContent={<MoreButton />}
|
||||
/>
|
||||
</div>
|
||||
{user?.username === 'RichardHanania' && (
|
||||
<div>
|
||||
<CreateQuestionButton user={user} />
|
||||
|
||||
{user &&
|
||||
|
@ -327,6 +329,8 @@ export default function Sidebar(props: { className?: string }) {
|
|||
</Row>
|
||||
)
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</nav>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -73,6 +73,7 @@ export function NewContract(props: { question: string; groupId?: string }) {
|
|||
|
||||
useEffect(() => {
|
||||
if (creator === null) router.push('/')
|
||||
if (creator && creator.username !== 'RichardHanania') router.push('/')
|
||||
}, [creator])
|
||||
|
||||
const [outcomeType, setOutcomeType] = useState<outcomeType>('BINARY')
|
||||
|
|
|
@ -191,7 +191,7 @@ export default function GroupPage(props: {
|
|||
<Title className={'line-clamp-2'} text={group.name} />
|
||||
<span className={'text-gray-700'}>{group.about}</span>
|
||||
</div>
|
||||
{isMember && (
|
||||
{isMember && user?.username === 'RichardHanania' && (
|
||||
<CreateQuestionButton
|
||||
user={user}
|
||||
overrideText={'Add a new question'}
|
||||
|
|
Loading…
Reference in New Issue
Block a user