1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-09 09:35:02 +09:00

Merge branch 'main' of github.com:anyproto/anytype-ts into js-4399-multiplayer-tooltips-and-wizzard-updates

This commit is contained in:
Andrew Simachev 2024-04-20 07:38:39 +02:00
commit 441338b8f9
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
4 changed files with 7 additions and 7 deletions

View file

@ -1 +1 @@
0.33.0-rc18
0.33.0-rc20

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "anytype",
"version": "0.39.28-beta",
"version": "0.39.29-alpha",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "anytype",
"version": "0.39.28-beta",
"version": "0.39.29-alpha",
"hasInstallScript": true,
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {

View file

@ -1,6 +1,6 @@
{
"name": "anytype",
"version": "0.39.28-beta",
"version": "0.39.29-alpha",
"description": "Anytype",
"main": "electron.js",
"scripts": {

View file

@ -1,6 +1,7 @@
import { I, UtilCommon, UtilData, UtilObject, Storage, translate } from 'Lib';
import { commonStore, authStore, blockStore, detailStore, dbStore } from 'Store';
import Constant from 'json/constant.json';
import Url from 'json/url.json';
class UtilSpace {
@ -168,10 +169,9 @@ class UtilSpace {
};
getInviteLink (cid: string, key: string) {
//return UtilCommon.sprintf(Url.invite, cid, key);
return `${Constant.protocol}://invite/?cid=${cid}&key=${key}`;
return UtilCommon.sprintf(Url.invite, cid, key);
};
};
export default new UtilSpace();
export default new UtilSpace();