Skip to content

Commit

Permalink
fix: incorrect holdup time in the edit wallet form (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xShuk authored Dec 27, 2024
1 parent ba37804 commit 81e513d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions hub/components/EditWalletRules/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ import { EditWalletForm } from './Form';
import { EditWalletSummary } from './Summary';
import { CommunityRules, CouncilRules } from './types';
import { useGovernanceByPubkeyQuery } from '@hooks/queries/governance';
import useGovernanceAssets from '@hooks/useGovernanceAssets';
import useProgramVersion from '@hooks/useProgramVersion';
import { useMintInfoByPubkeyQuery } from '@hooks/queries/mintInfo';
import getGovernanceRules from './utils';
Expand Down Expand Up @@ -73,7 +72,6 @@ export function EditWalletRules(props: Props) {

const { symbol } = useRealm();
const { connection } = useConnection();
const {assetAccounts} = useGovernanceAssets()

const router = useRouter();
const [step, setStep] = useState(Step.Form);
Expand Down Expand Up @@ -383,7 +381,7 @@ export function EditWalletRules(props: Props) {
60 *
60 *
24 *
minInstructionHoldupDays,
initialMinInstructionHoldupDays,
prerequisiteInstructions: [],
},
],
Expand Down

0 comments on commit 81e513d

Please sign in to comment.