Skip to content

Commit

Permalink
fix: do not import enum as type (#1641)
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlc03 authored Jul 12, 2024
1 parent 9fd54df commit 45fca46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/ts/commands/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export { publish, publishBatch } from "./publish";
export { setVerifyingKeys } from "./setVerifyingKeys";
export { showContracts } from "./showContracts";
export { timeTravel } from "./timeTravel";
export { signup, isRegisteredUser, getGatekeeperTrait } from "./signup";
export { signup, isRegisteredUser, getGatekeeperTrait, getSemaphoreGatekeeperData } from "./signup";
export { verify } from "./verify";
export { genProofs } from "./genProofs";
export { fundWallet } from "./fundWallet";
Expand Down
2 changes: 1 addition & 1 deletion cli/ts/commands/signup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import {
import { PubKey } from "maci-domainobjs";

import type {
GatekeeperTrait,
IGetGatekeeperTraitArgs,
IParseSignupEventsArgs,
IRegisteredUserArgs,
Expand All @@ -20,6 +19,7 @@ import type {
import { banner } from "../utils/banner";
import { contractExists } from "../utils/contracts";
import { DEFAULT_IVCP_DATA, DEFAULT_SG_DATA } from "../utils/defaults";
import { GatekeeperTrait } from "../utils/interfaces";
import { info, logError, logGreen, logYellow, success } from "../utils/theme";

/**
Expand Down

0 comments on commit 45fca46

Please sign in to comment.