@forge/util

2.0.12.0.1-experimental-7890858
packages/ari/lucid.lucidchart/remote-link/index.js
~packages/ari/lucid.lucidchart/remote-link/index.jsModified
+1−4
Index: package/packages/ari/lucid.lucidchart/remote-link/index.js
===================================================================
--- package/packages/ari/lucid.lucidchart/remote-link/index.js
+++ package/packages/ari/lucid.lucidchart/remote-link/index.js
@@ -284,23 +284,20 @@
 var lucidLucidchartRemoteLinkAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "third-party",
   cloudId: new RegExp("^$"),
-  // eslint-disable-line no-useless-escape
   resourceOwner: LucidLucidchartRemoteLinkAriResourceOwner,
   resourceType: LucidLucidchartRemoteLinkAriResourceType,
   resourceIdSlug: "chart/{chartId}",
   resourceIdSegmentFormats: {
     chartId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
-    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/lucid.lucidchart/remote-link/index.ts
 var LucidLucidchartRemoteLinkAri = class _LucidLucidchartRemoteLinkAri extends RegisteredAri {
   constructor(opts) {
-    super(opts);
-    this._chartId = opts.resourceIdSegmentValues.chartId;
+    super(opts), this._chartId = opts.resourceIdSegmentValues.chartId;
   }
   get chartId() {
     return this._chartId;
   }