Skip to content

Commit

Permalink
fix missing default parameter type value during intent creation
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredfrancis committed Jan 10, 2025
1 parent 60c178a commit 6dfdb39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/admin/intents/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const IntentPage = ({ params }: { params: Promise<{ id: string }> }) => {
...prev,
parameters: [...prev.parameters, {
name: '',
type: '',
type: 'free_text',
required: false,
prompt: ''
}]
Expand Down

0 comments on commit 6dfdb39

Please sign in to comment.