Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
fmorency committed Aug 28, 2024
1 parent a5a18d5 commit 40a1c85
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions tests/mock.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
import { Chain } from "@chain-registry/types";
import { BondStatus, ParamsSDKType } from "@chalabi/manifestjs/dist/codegen/cosmos/staking/v1beta1/staking";
import {
BondStatus,
ParamsSDKType,
} from "@chalabi/manifestjs/dist/codegen/cosmos/staking/v1beta1/staking";
import { ExtendedValidatorSDKType, TransactionGroup } from "@/components";
import { CombinedBalanceInfo } from "@/pages/bank";
import { ExtendedGroupType } from "@/hooks";
import {
ProposalExecutorResult,
ProposalSDKType,
ProposalStatus
ProposalStatus,
} from "@chalabi/manifestjs/dist/codegen/cosmos/group/v1/types";
import { MetadataSDKType } from "@chalabi/manifestjs/dist/codegen/cosmos/bank/v1beta1/bank";
import { FormData, ProposalFormData } from "@/helpers";
Expand Down Expand Up @@ -471,14 +474,14 @@ export const mockProposalFormData: ProposalFormData = {
title: "Test Metadata Title",
authors: "manifest1author",
summary: "This is a test summary",
details: "Detailed description of the test proposal"
details: "Detailed description of the test proposal",
},
messages: [
{
type: "send",
amount: { denom: "umfx", amount: "100" },
to_address: "manifest1recipient",
from_address: "manifest1from"
}
]
};
from_address: "manifest1from",
},
],
};

0 comments on commit 40a1c85

Please sign in to comment.