@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/package.json
CHANGED
|
@@ -62,10 +62,10 @@ export function PreviewPanel({
|
|
|
62
62
|
}: PreviewPanelProps) {
|
|
63
63
|
const handleShare = React.useCallback(async () => {
|
|
64
64
|
if (!app || !app.isPublic) return;
|
|
65
|
-
const shareUrl = `https://
|
|
66
|
-
const message = app.name ? `${app.name} on
|
|
65
|
+
const shareUrl = `https://remix.one/app/${app.id}`;
|
|
66
|
+
const message = app.name ? `${app.name} on Remix\n${shareUrl}` : `Check out this app on Remix\n${shareUrl}`;
|
|
67
67
|
try {
|
|
68
|
-
const title = app.name ?? '
|
|
68
|
+
const title = app.name ?? 'Remix app';
|
|
69
69
|
const payload =
|
|
70
70
|
Platform.OS === 'ios'
|
|
71
71
|
? {
|