From 40a1c85a4ad92cbb13e9b7d187a516701054247e Mon Sep 17 00:00:00 2001 From: "Felix C. Morency" <1102868+fmorency@users.noreply.github.com> Date: Wed, 28 Aug 2024 15:06:20 -0400 Subject: [PATCH] fix: prettier --- tests/mock.ts | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/tests/mock.ts b/tests/mock.ts index fe755df3..c3e67807 100644 --- a/tests/mock.ts +++ b/tests/mock.ts @@ -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"; @@ -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" - } - ] -}; \ No newline at end of file + from_address: "manifest1from", + }, + ], +};