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.
1 parent d7a7faf commit 8b2504bCopy full SHA for 8b2504b
templates/react-native/src/services/template.ts.twig
@@ -205,6 +205,9 @@ export class {{ service.name | caseUcfirst }} extends Service {
205
206
{% endfor %}
207
const uri = new URL(this.client.config.endpoint + apiPath);
208
+ for (const [key, value] of Object.entries(Service.flatten(payload))) {
209
+ uri.searchParams.append(key, value);
210
+ }
211
212
return uri;
213
}
0 commit comments