From 5ca17f15834b0e2cd80ec81c876e486d36e68cdf Mon Sep 17 00:00:00 2001 From: Troy Rosenberg Date: Fri, 1 Mar 2019 23:25:16 -0500 Subject: [PATCH] Adds missing comma to example in README. Adds a missing comma to the example in the README where the Apollo configuration is set up. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d88c502..6989e24 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ import { HttpLink } from 'apollo-link-http' // can also be a function that accepts a `context` object (SSR only) and returns a config const config = { link: new HttpLink({ - credentials: 'same-origin' // Additional fetch() options like `credentials` or `headers` + credentials: 'same-origin', // Additional fetch() options like `credentials` or `headers` uri: 'https://api.graph.cool/simple/v1/cixmkt2ul01q00122mksg82pn', // Server URL }) }