Skip to content

Commit

Permalink
🐛 fix: Fix agent share formate
Browse files Browse the repository at this point in the history
  • Loading branch information
canisminor1990 committed Oct 19, 2023
1 parent 17976c9 commit 56ebc0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/chat/settings/features/SubmitAgentButton/Inner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Inner = memo(() => {
'### systemRole',
systemRole,
'### identifier',
identifier,
kebabCase(identifier),
'### avatar',
meta.avatar,
'### title',
Expand Down Expand Up @@ -65,7 +65,7 @@ const Inner = memo(() => {
{t('submitAgentModal.identifier')}
</strong>
<Input
onChange={(e) => setIdentifier(kebabCase(e.target.value))}
onChange={(e) => setIdentifier(e.target.value)}
placeholder={t('submitAgentModal.placeholder')}
value={identifier}
/>
Expand Down

0 comments on commit 56ebc0b

Please sign in to comment.