fix: circ dep by moving proposed markets to app

This commit is contained in:
Matthew Russell 2024-03-09 15:58:22 +00:00
parent d67c7efb4f
commit 3ed6522bf4
No known key found for this signature in database
2 changed files with 6 additions and 3 deletions

View File

@ -4,9 +4,11 @@ import type { MockedResponse } from '@apollo/client/testing';
import { MockedProvider } from '@apollo/client/testing';
import { ProposalsList } from './proposals-list';
import * as Types from '@vegaprotocol/types';
import { createProposalListFieldsFragment } from '../../lib/proposals-data-provider/proposals.mock';
import type { ProposalsListQuery } from '../../lib';
import { ProposalsListDocument } from '../../lib';
import {
createProposalListFieldsFragment,
ProposalsListDocument,
type ProposalsListQuery,
} from '@vegaprotocol/proposals';
import type { PartialDeep } from 'type-fest';
const parentMarketName = 'Parent Market Name';

View File

@ -1,2 +1,3 @@
export * from './proposals-data-provider';
export * from './__generated__/Proposals';
export * from './proposals.mock';