Skip to content

Commit 44545a3

Browse files
fix: list style fix
1 parent 9f1d432 commit 44545a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/ChatBot/CommunitiesInfo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const CommunitiesInfo: FC<CommunitiesProps> = ({ loading, communities, mode }) =
3636
</Box>
3737
) : communities?.length > 0 ? (
3838
<div className='p-4 h-80 overflow-auto'>
39-
<ul className='list-disc list-inside'>
39+
<ul className='list-none list-inside'>
4040
{communities.map((community, index) => (
4141
<li key={`${community.id}${index}`} className='mb-2'>
4242
<div>

0 commit comments

Comments
 (0)