Skip to content

Commit

Permalink
bugfix: add default submissions const in store
Browse files Browse the repository at this point in the history
  • Loading branch information
nakedfool committed Sep 10, 2024
1 parent 9570ac3 commit d47b19c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/react-app-revamp/hooks/useDeployContest/store.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { VotingFieldObject } from "@components/_pages/Create/pages/ContestVoting
import { StateKey } from "@components/_pages/Create/utils/validation";
import { ReactNode } from "react";
import { create } from "zustand";
import { DEFAULT_SUBMISSIONS } from ".";
import {
Charge,
SplitFeeDestinationType,
Expand All @@ -19,6 +18,8 @@ import {

type ReactStyleStateSetter<T> = T | ((prev: T) => T);

const DEFAULT_SUBMISSIONS = 1000000;

type ContestDeployError = {
step: number;
message: string;
Expand Down

0 comments on commit d47b19c

Please sign in to comment.