@solana-mobile/dapp-store-publishing-tools 0.7.2 → 0.7.3
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.
|
@@ -223,9 +223,9 @@ export var publishUpdate = function() {
|
|
|
223
223
|
];
|
|
224
224
|
case 1:
|
|
225
225
|
updateRequest = _state.sent();
|
|
226
|
-
submitRequestToSolanaDappPublisherPortal(updateRequest, URL_FORM_UPDATE, dryRun);
|
|
227
226
|
return [
|
|
228
|
-
2
|
|
227
|
+
2,
|
|
228
|
+
submitRequestToSolanaDappPublisherPortal(updateRequest, URL_FORM_UPDATE, dryRun)
|
|
229
229
|
];
|
|
230
230
|
}
|
|
231
231
|
});
|
package/package.json
CHANGED
|
@@ -140,5 +140,5 @@ export const publishUpdate = async (
|
|
|
140
140
|
requestorIsAuthorized,
|
|
141
141
|
criticalUpdate);
|
|
142
142
|
|
|
143
|
-
submitRequestToSolanaDappPublisherPortal(updateRequest, URL_FORM_UPDATE, dryRun);
|
|
143
|
+
return submitRequestToSolanaDappPublisherPortal(updateRequest, URL_FORM_UPDATE, dryRun);
|
|
144
144
|
};
|