@designcrowd/fe-shared-lib 1.0.8-ml-82-13 → 1.0.8-ml-82-14

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@designcrowd/fe-shared-lib",
3
- "version": "1.0.8-ml-82-13",
3
+ "version": "1.0.8-ml-82-14",
4
4
  "scripts": {
5
5
  "start": "npm run storybook",
6
6
  "build": "npm run build:css --production",
@@ -366,7 +366,7 @@ export default {
366
366
  if (this.aUserName) {
367
367
  url.searchParams.append('initialUserName', this.aUserName);
368
368
  }
369
- return url;
369
+ return url.toString();
370
370
  },
371
371
  getForgotPasswordUrl() {
372
372
  if (typeof window === 'undefined') {
@@ -245,7 +245,7 @@ export default {
245
245
  if (this.aUserName) {
246
246
  url.searchParams.append('initialUserName', this.aUserName);
247
247
  }
248
- return url;
248
+ return url.toString();
249
249
  },
250
250
  getRedirectToRecommendedActionUrl() {
251
251
  if (typeof window === 'undefined') {