wallet-connect-button-vue 1.0.5 → 1.0.6

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/dist/index.esm.js CHANGED
@@ -105,7 +105,7 @@ const fetchDisclosedAttributes = async () => {
105
105
  if (!session_token) return;
106
106
 
107
107
  loading.value = true;
108
- const baseUrl = props.walletConnectHost || "https://wallet-connect.eu";
108
+ const baseUrl = props.apiKey ? (props.walletConnectHost || "https://wallet-connect.eu") : "";
109
109
  let url = baseUrl + `/api/disclosed-attributes?session_token=${session_token}&client_id=${props.clientId}`;
110
110
  if (nonce) url = `${url}&nonce=${nonce}`;
111
111