Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
mudrila committed Apr 14, 2024
1 parent b2c1780 commit db9e409
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface ITokenAllocations {
setFieldValue: (field: string, value: any) => void;
addressErrorMessage: string | null;
amountErrorMessage: string | null;
amountInputValue: bigint | undefined;
amountInputValue?: bigint;
allocationLength: number;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/forms/BigIntInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { BigIntValuePair } from '../../../types';
export interface BigIntInputProps
extends Omit<InputElementProps, 'value' | 'onChange'>,
FormControlOptions {
value: bigint | undefined;
value?: bigint;
onChange: (value: BigIntValuePair) => void;
decimalPlaces?: number;
min?: string;
Expand Down
1 change: 0 additions & 1 deletion src/types/daoProposal.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { ProposalMetadata } from './createProposal';
import { GovernanceActivity } from './fractal';
import { CreateProposalMetadata } from './proposalBuilder';
import { SafeMultisigConfirmationResponse } from './safeGlobal';
Expand Down
4 changes: 2 additions & 2 deletions src/types/fractal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,10 @@ export enum SafeTransferType {
}

export interface ITokenAccount {
userBalance: bigint | undefined;
userBalance?: bigint;
userBalanceString: string | undefined;
delegatee: string | undefined;
votingWeight: bigint | undefined;
votingWeight?: bigint;
votingWeightString: string | undefined;
isDelegatesSet: boolean | undefined;
}
Expand Down

0 comments on commit db9e409

Please sign in to comment.