From d7ccdb8aa0fe99e4b42d8b90503c0b42f70fd899 Mon Sep 17 00:00:00 2001 From: Frank Calise Date: Fri, 21 Jun 2024 15:16:11 -0400 Subject: [PATCH] Update docs/recipes/ApolloClientCache.md Co-authored-by: Daniel Edwards --- docs/recipes/ApolloClientCache.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/recipes/ApolloClientCache.md b/docs/recipes/ApolloClientCache.md index 52bbedc3..4a5ba5fb 100644 --- a/docs/recipes/ApolloClientCache.md +++ b/docs/recipes/ApolloClientCache.md @@ -37,7 +37,6 @@ touch app/stores/apollo/index.tsx Open up `app/stores/apollo/index.tsx` and initialize your Apollo Client, feel free to customize this to your liking: ```tsx title="app/stores/apollo/index.tsx" -// app/stores/apollo/index.tsx import { ApolloClient, InMemoryCache } from "@apollo/client"; const cache = new InMemoryCache();