Skip to content

Commit 4045e9a

Browse files
chore: add gaps between prompts in list (#2403)
1 parent e7554cd commit 4045e9a

File tree

1 file changed

+1
-1
lines changed
  • apps/ai-dial-admin/src/components/Containers/View/Prompts

1 file changed

+1
-1
lines changed

apps/ai-dial-admin/src/components/Containers/View/Prompts/Prompts.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const Prompts: FC<Props> = ({ containerId }) => {
3737

3838
return (
3939
<div className="flex flex-col">
40-
<div className="flex flex-col mt-6">
40+
<div className="flex flex-col gap-6">
4141
{prompts?.map((prompt, index) => {
4242
return <PromptComponent prompt={prompt} key={index} />;
4343
})}

0 commit comments

Comments
 (0)