From f00bec50b9760370ee333cdb5498ca18ca552af1 Mon Sep 17 00:00:00 2001 From: Kyle Lawlor-Bagcal Date: Mon, 31 Jul 2023 16:05:16 -0400 Subject: [PATCH] chore: rename historicalProposal to historical-proposal --- ...historicalProposal.utils.ts => historical-proposal.utils.ts} | 0 src/hooks/use-query.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/graphql/{historicalProposal.utils.ts => historical-proposal.utils.ts} (100%) diff --git a/src/graphql/historicalProposal.utils.ts b/src/graphql/historical-proposal.utils.ts similarity index 100% rename from src/graphql/historicalProposal.utils.ts rename to src/graphql/historical-proposal.utils.ts diff --git a/src/hooks/use-query.ts b/src/hooks/use-query.ts index def854e..3696144 100644 --- a/src/hooks/use-query.ts +++ b/src/hooks/use-query.ts @@ -3,7 +3,7 @@ import { ProposalsByGroupPolicyAddressDocument, ProposalsByProposalIdDocument, } from 'gql/graphql' -import { nodeToUIProposal } from 'graphql/historicalProposal.utils' +import { nodeToUIProposal } from 'graphql/historical-proposal.utils' import { useGraphQLClient } from 'graphql-request-context' import { fetchAllBalances } from 'api/bank.actions'