From 2d6a95191702cf6fbdb438d4d8319a96172f69b4 Mon Sep 17 00:00:00 2001 From: Vladyslav Dalechyn Date: Tue, 23 Jul 2024 19:14:29 +0300 Subject: [PATCH] fix: type composer missing (#433) * fix: missing `"type": "composer"` in composer action * chore: changesets --- .changeset/hungry-buttons-rhyme.md | 5 +++++ src/frog-base.tsx | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 .changeset/hungry-buttons-rhyme.md diff --git a/.changeset/hungry-buttons-rhyme.md b/.changeset/hungry-buttons-rhyme.md new file mode 100644 index 00000000..52492e89 --- /dev/null +++ b/.changeset/hungry-buttons-rhyme.md @@ -0,0 +1,5 @@ +--- +"frog": patch +--- + +Fixed an issue with missing `"type": "composer"` in Composer Action Metadata Response that resulted in incorrect behaviour. diff --git a/src/frog-base.tsx b/src/frog-base.tsx index 4a0eda5f..28a28ef2 100644 --- a/src/frog-base.tsx +++ b/src/frog-base.tsx @@ -471,6 +471,7 @@ export class FrogBase< icon, imageUrl, name, + type: 'composer', }) }) } else { @@ -486,6 +487,7 @@ export class FrogBase< icon, imageUrl, name, + type: 'composer', }) }) }