Skip to content

Commit

Permalink
fix(type): database enum change
Browse files Browse the repository at this point in the history
  • Loading branch information
Haxfx committed Mar 15, 2024
1 parent cecc1cb commit 976af59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/dashboard/create-project-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const ProjectFormDataSchema = z.object({
tokenName: z.string().optional(),
website: z.string().optional(),
whitepaper: z.string().optional(),
stage: z.enum(["dev", "test", "main", "none"]).optional(),
stage: z.enum(["Mainnet", "Testnet", "Devnet", "Local/Private"]).optional(),
releaseDate: z.date().optional().nullable(),
isLive: z.boolean().optional(),
twitter: z.string().optional(),
Expand Down

0 comments on commit 976af59

Please sign in to comment.