devx-web-widget 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +0 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devx-web-widget",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/src/index.ts CHANGED
@@ -85,7 +85,6 @@ class FeedbackWidget {
85
85
  private selectedEl: Element | null;
86
86
  private hoverRafId: number | null;
87
87
  private hostId: string;
88
- private endPoint: string;
89
88
 
90
89
  constructor(config: FeedbackWidgetConfig = {}) {
91
90
  this.config = { ...DEFAULT_CONFIG, ...config };
@@ -95,7 +94,6 @@ class FeedbackWidget {
95
94
  this.selectedSelector = null;
96
95
  this.selectedEl = null;
97
96
  this.hoverRafId = null;
98
- this.endPoint = "https://devx.today/v1/widget/ingest";
99
97
 
100
98
  this.initialize();
101
99
  }