Skip to content

Commit 5b49c5d

Browse files
committed
Don't default to using component analysis
1 parent e2d3c7a commit 5b49c5d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/us_street.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ const credentials = new SmartyCore.SharedCredentials(key);
1515
// The appropriate license values to be used for your subscriptions
1616
// can be found on the Subscription page of the account dashboard.
1717
// https://www.smarty.com/docs/cloud/licensing
18-
let clientBuilder = new SmartyCore.ClientBuilder(credentials)
19-
.withLicenses(["us-rooftop-geocoding-cloud"])
20-
.withFeatureComponentAnalysis();
18+
let clientBuilder = new SmartyCore.ClientBuilder(credentials).withLicenses([
19+
"us-rooftop-geocoding-cloud",
20+
]);
2121
// .withBaseUrl("YOUR URL") // withBaseUrl() should be used if you are self-hosting the Smarty API
2222

2323
let client = clientBuilder.buildUsStreetApiClient();

0 commit comments

Comments
 (0)