Skip to content

Commit 5734dcc

Browse files
committedJan 3, 2024
Revert accidental changes to test-project
1 parent 9d9d373 commit 5734dcc

File tree

2 files changed

+1
-20
lines changed

2 files changed

+1
-20
lines changed
 

‎__fixtures__/test-project/web/src/App.tsx

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { FatalErrorBoundary, RedwoodProvider } from '@redwoodjs/web'
22
import { RedwoodApolloProvider } from '@redwoodjs/web/apollo'
33

4-
import possibleTypes from 'src/graphql/possibleTypes'
54
import FatalErrorPage from 'src/pages/FatalErrorPage'
65
import Routes from 'src/Routes'
76

@@ -14,14 +13,7 @@ const App = () => (
1413
<FatalErrorBoundary page={FatalErrorPage}>
1514
<RedwoodProvider titleTemplate="%PageTitle | %AppTitle">
1615
<AuthProvider>
17-
<RedwoodApolloProvider
18-
useAuth={useAuth}
19-
graphQLClientConfig={{
20-
cacheConfig: {
21-
...possibleTypes,
22-
},
23-
}}
24-
>
16+
<RedwoodApolloProvider useAuth={useAuth}>
2517
<Routes />
2618
</RedwoodApolloProvider>
2719
</AuthProvider>

‎__fixtures__/test-project/web/src/graphql/possibleTypes.ts

-11
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.