Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions src/pages/markets/new/index.jsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,4 @@
import dynamic from 'next/dynamic';

const CreateMarketFlow = dynamic(
() => import('../../../components/futarchyFi/createMarket/CreateMarketFlow'),
{
ssr: false,
loading: () => (
<div className="flex min-h-screen items-center justify-center bg-white dark:bg-futarchyDarkGray2">
<div className="h-10 w-10 animate-spin rounded-full border-b-2 border-futarchyLavender" />
</div>
),
}
);
import CreateMarketFlow from '../../../components/futarchyFi/createMarket/CreateMarketFlow';

export default function NewMarketPage() {
return <CreateMarketFlow />;
Expand Down