Skip to content

Commit

Permalink
Merge pull request #2454 from zeitgeistpm/enable-market-creation
Browse files Browse the repository at this point in the history
Enable market creation
  • Loading branch information
robhyrk authored Aug 19, 2024
2 parents 081b919 + 99c9491 commit 36d1113
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions components/top-bar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ const TopBar = () => {

<CategoriesMenuItem onSelect={close} />

{/* <Menu.Item>
<Menu.Item>
{({ active }) => (
<Link href="/create" onClick={close}>
<button
Expand All @@ -182,7 +182,7 @@ const TopBar = () => {
</button>
</Link>
)}
</Menu.Item> */}
</Menu.Item>

{process.env.NEXT_PUBLIC_SHOW_COURT === "true" && (
<Menu.Item>
Expand Down
12 changes: 0 additions & 12 deletions disabled-pages/create.tsx

This file was deleted.

12 changes: 12 additions & 0 deletions pages/create.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import MarketEditor from "components/create/editor/Editor";
import { NextPage } from "next";

const CreateMarketPage: NextPage = () => {
return (
<div className="mt-10">
<MarketEditor />
</div>
);
};

export default CreateMarketPage;

0 comments on commit 36d1113

Please sign in to comment.