We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0f985dc + 0f96e60 commit 98f7c3cCopy full SHA for 98f7c3c
src/GoogleApiComponent.js
@@ -17,6 +17,7 @@ const defaultCreateCache = options => {
17
const language = options.language || 'en';
18
const url = options.url;
19
const client = options.client;
20
+ const region = options.region;
21
22
return ScriptCache({
23
google: GoogleApi({
@@ -25,7 +26,8 @@ const defaultCreateCache = options => {
25
26
libraries: libraries,
27
version: version,
28
url: url,
- client: client
29
+ client: client,
30
+ region: region
31
})
32
});
33
};
0 commit comments