Skip to content

Commit c253d9e

Browse files
committed
Fix datasets URL: demo-datasets.datasafe.dev
1 parent 1a7a063 commit c253d9e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"types": "js/index.d.ts",
2727
"exports": {
2828
".": {
29-
"import": "./ts/index.ts",
29+
"import": "./js/index.js",
3030
"require": "./js/index.js",
3131
"default": "./js/index.js"
3232
},

tests/hdsModel.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ describe('[MODX] Model', () => {
180180
const ds = dsModel.datasources.forKey('medication');
181181
assert.ok(ds);
182182
assert.equal(ds.key, 'medication');
183-
assert.equal(ds.endpoint, 'https://datasets.datasafe.dev/medication');
183+
assert.equal(ds.endpoint, 'https://demo-datasets.datasafe.dev/medication');
184184
assert.equal(ds.queryParam, 'search');
185185
assert.equal(ds.minQueryLength, 3);
186186
assert.equal(ds.resultKey, 'medications');

0 commit comments

Comments
 (0)