@dopplerhq/universal-import-react
Advanced tools
Comparing version 0.0.7 to 0.0.8
@@ -155,6 +155,6 @@ import { encryption, utils } from "@dopplerhq/universal-import-core"; | ||
function openImportTab(payload, keyId) { | ||
const params = new URLSearchParams(); | ||
params.set("payload", payload); | ||
params.set("keyId", keyId); | ||
openWindow(`${DOPPLER_DASHBOARD_URL}/import?${params.toString()}`, 800, 800); | ||
const url = new URL("/import", DOPPLER_DASHBOARD_URL); | ||
url.searchParams.set("payload", payload); | ||
url.searchParams.set("keyId", keyId); | ||
openWindow(url.toString(), 800, 800); | ||
} | ||
@@ -161,0 +161,0 @@ function openWindow(url, windowWidth, windowHeight) { |
{ | ||
"name": "@dopplerhq/universal-import-react", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"main": "dist/index.js", | ||
@@ -5,0 +5,0 @@ "types": "dist/index.d.ts", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26721