diff --git a/manifest.config.ts b/manifest.config.ts index 5db9f14..8bb0dae 100644 --- a/manifest.config.ts +++ b/manifest.config.ts @@ -9,7 +9,7 @@ export default defineManifest(async (env) => ({ name: 'Focalize - DApp for Lens Protocol (Beta)', short_name: 'Focalize', version, - version_name: '2.0.0-beta.01', + version_name: '2.0.0-beta.02', description: 'Social app built on Lens Protocol with DMs via XMTP', permissions: [ 'activeTab', diff --git a/package.json b/package.json index e4534a7..9902b4e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "focalize", "private": true, - "version": "1.9.0", + "version": "1.9.1", "type": "module", "scripts": { "dev": "vite", diff --git a/src/lib/publications/lens-post.ts b/src/lib/publications/lens-post.ts index ef4af87..0f91c78 100644 --- a/src/lib/publications/lens-post.ts +++ b/src/lib/publications/lens-post.ts @@ -246,9 +246,9 @@ const createPostTransaction = async ( console.log('createPostTransaction: Created post typed data', typedData); if (useRelay) { - // @ts-ignore This function strips the __typename const signature = await signTypedData( typedData.domain, + // @ts-ignore typedData.types, typedData.value ); diff --git a/src/window/Composer.svelte b/src/window/Composer.svelte index 5ca2d89..6907f7f 100644 --- a/src/window/Composer.svelte +++ b/src/window/Composer.svelte @@ -207,7 +207,6 @@ $attachments[0].cover = `ipfs://${$cover.cid}`; } - const tags = $postTags.length ? $postTags : undefined; let attributes: MetadataAttributeInput[] = []; mainFocus = getMainFocusFromMimeType($attachments[0].type); @@ -221,7 +220,7 @@ $attachments, $title, $content, - tags, + $postTags, $contentWarning, $description, locale, @@ -237,7 +236,7 @@ $cover?.type, $content, attributes, - tags ?? undefined, + $postTags, $contentWarning, $description, locale, @@ -253,7 +252,7 @@ $cover?.type, $content, attributes, - tags ?? undefined, + $postTags, $contentWarning, $description, locale,