We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3029503 + 65b4d47 commit 6cc5bbfCopy full SHA for 6cc5bbf
1 file changed
src/GoogleApiComponent.js
@@ -16,14 +16,16 @@ const defaultCreateCache = options => {
16
const version = options.version || '3';
17
const language = options.language || 'en';
18
const url = options.url;
19
+ const client = options.client;
20
21
return ScriptCache({
22
google: GoogleApi({
23
apiKey: apiKey,
24
language: language,
25
libraries: libraries,
26
version: version,
- url: url
27
+ url: url,
28
+ client: client
29
})
30
});
31
};
0 commit comments