@comergehq/studio 0.1.18 → 0.1.20
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.mjs
CHANGED
|
@@ -188,7 +188,7 @@ import * as React from "react";
|
|
|
188
188
|
import axios from "axios";
|
|
189
189
|
|
|
190
190
|
// src/core/services/http/baseUrl.ts
|
|
191
|
-
var BASE_URL = "https://api.
|
|
191
|
+
var BASE_URL = "https://api.remix.one";
|
|
192
192
|
|
|
193
193
|
// src/core/services/http/public.ts
|
|
194
194
|
var CLIENT_KEY_HEADER = "x-comerge-api-key";
|
|
@@ -5849,12 +5849,12 @@ function PreviewPanel({
|
|
|
5849
5849
|
}) {
|
|
5850
5850
|
const handleShare = React35.useCallback(async () => {
|
|
5851
5851
|
if (!app || !app.isPublic) return;
|
|
5852
|
-
const shareUrl = `https://
|
|
5853
|
-
const message = app.name ? `${app.name} on
|
|
5854
|
-
${shareUrl}` : `Check out this app on
|
|
5852
|
+
const shareUrl = `https://remix.one/app/${app.id}`;
|
|
5853
|
+
const message = app.name ? `${app.name} on Remix
|
|
5854
|
+
${shareUrl}` : `Check out this app on Remix
|
|
5855
5855
|
${shareUrl}`;
|
|
5856
5856
|
try {
|
|
5857
|
-
const title = app.name ?? "
|
|
5857
|
+
const title = app.name ?? "Remix app";
|
|
5858
5858
|
const payload = Platform8.OS === "ios" ? {
|
|
5859
5859
|
title,
|
|
5860
5860
|
message
|