From 5734dcc545bb1521c02b8d7ac398511923e76170 Mon Sep 17 00:00:00 2001 From: Tobbe Lundberg Date: Wed, 3 Jan 2024 19:19:17 +0100 Subject: [PATCH] Revert accidental changes to test-project --- __fixtures__/test-project/web/src/App.tsx | 10 +--------- .../test-project/web/src/graphql/possibleTypes.ts | 11 ----------- 2 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 __fixtures__/test-project/web/src/graphql/possibleTypes.ts diff --git a/__fixtures__/test-project/web/src/App.tsx b/__fixtures__/test-project/web/src/App.tsx index cb77cb1e4322..65419d60c7d6 100644 --- a/__fixtures__/test-project/web/src/App.tsx +++ b/__fixtures__/test-project/web/src/App.tsx @@ -1,7 +1,6 @@ import { FatalErrorBoundary, RedwoodProvider } from '@redwoodjs/web' import { RedwoodApolloProvider } from '@redwoodjs/web/apollo' -import possibleTypes from 'src/graphql/possibleTypes' import FatalErrorPage from 'src/pages/FatalErrorPage' import Routes from 'src/Routes' @@ -14,14 +13,7 @@ const App = () => ( - + diff --git a/__fixtures__/test-project/web/src/graphql/possibleTypes.ts b/__fixtures__/test-project/web/src/graphql/possibleTypes.ts deleted file mode 100644 index a8d476e9029c..000000000000 --- a/__fixtures__/test-project/web/src/graphql/possibleTypes.ts +++ /dev/null @@ -1,11 +0,0 @@ -export interface PossibleTypesResultData { - possibleTypes: { - [key: string]: string[] - } -} - -const result: PossibleTypesResultData = { - possibleTypes: {}, -} - -export default result