Skip to content

Commit

Permalink
Update frog-composer-action.mdx (wevm#507)
Browse files Browse the repository at this point in the history
Fixes long default composer action name

The default composer action name, "some composer action", exceeded the 14-character limit. This commit changes the name to "composerAction" to resolve this issue.
  • Loading branch information
compusophy authored Oct 24, 2024
1 parent b8a52a6 commit 1b7aa5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions site/pages/reference/frog-composer-action.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ app.composerAction( // [!code focus]
}) // [!code focus]
}, // [!code focus]
{ // [!code focus]
name: 'Some Composer Action', // [!code focus]
name: 'composerAction', // [!code focus]
description: 'Cool Composer Action', // [!code focus]
icon: 'image', // [!code focus]
imageUrl: 'https://frog.fm/logo-light.svg', // [!code focus]
Expand Down Expand Up @@ -58,7 +58,7 @@ app.composerAction(
})
},
{
name: 'Some Composer Action',
name: 'composerAction',
description: 'Cool Composer Action',
icon: 'image',
imageUrl: 'https://frog.fm/logo-light.svg',
Expand Down Expand Up @@ -88,7 +88,7 @@ app.composerAction(
}) // [!code focus]
}, // [!code focus]
{
name: 'Some Composer Action',
name: 'composerAction',
description: 'Cool Composer Action',
icon: 'image',
imageUrl: 'https://frog.fm/logo-light.svg',
Expand Down Expand Up @@ -118,7 +118,7 @@ app.composerAction(
})
},
{ // [!code focus]
name: 'Some Composer Action', // [!code focus]
name: 'composerAction', // [!code focus]
description: 'Cool Composer Action', // [!code focus]
icon: 'image', // [!code focus]
imageUrl: 'https://frog.fm/logo-light.svg', // [!code focus]
Expand Down

0 comments on commit 1b7aa5e

Please sign in to comment.