From 39795919543e895829740deab052e43a11b543c0 Mon Sep 17 00:00:00 2001 From: Jack Clackett Date: Sun, 2 Aug 2020 21:19:47 +0200 Subject: [PATCH] run prettier on changed files --- examples/with-apollo-and-redux/lib/apollo.js | 2 +- examples/with-apollo/lib/apolloClient.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/with-apollo-and-redux/lib/apollo.js b/examples/with-apollo-and-redux/lib/apollo.js index 08cc6bd7a40f2..0b21a60a090a4 100644 --- a/examples/with-apollo-and-redux/lib/apollo.js +++ b/examples/with-apollo-and-redux/lib/apollo.js @@ -31,7 +31,7 @@ export function initializeApollo(initialState = null) { if (initialState) { // Get existing cache, loaded during client side data fetching const existingCache = _apolloClient.extract() - // Restore the cache using the data passed from getStaticProps/getServerSideProps + // Restore the cache using the data passed from getStaticProps/getServerSideProps // combined with the existing cached data _apolloClient.cache.restore({ ...existingCache, ...initialState }) } diff --git a/examples/with-apollo/lib/apolloClient.js b/examples/with-apollo/lib/apolloClient.js index 5f5941e70f9b6..e58cd46081907 100644 --- a/examples/with-apollo/lib/apolloClient.js +++ b/examples/with-apollo/lib/apolloClient.js @@ -31,7 +31,7 @@ export function initializeApollo(initialState = null) { if (initialState) { // Get existing cache, loaded during client side data fetching const existingCache = _apolloClient.extract() - // Restore the cache using the data passed from getStaticProps/getServerSideProps + // Restore the cache using the data passed from getStaticProps/getServerSideProps // combined with the existing cached data _apolloClient.cache.restore({ ...existingCache, ...initialState }) }