Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Derikyan committed Feb 19, 2025
1 parent 0c2c101 commit 9addd14
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/chat/src/components/Marketplace/TopicsList.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import React, { memo, useEffect, useRef, useState } from 'react';

import { stopBubbling } from '@/src/constants/chat';

import Tooltip from '../Common/Tooltip';
import { ApplicationTopic } from './ApplicationTopic';

Expand Down Expand Up @@ -137,7 +139,7 @@ export const TopicsList = ({
>
<span
className="flex cursor-pointer items-center rounded border border-accent-primary px-1.5 py-1 text-xs leading-3"
onClick={(event) => event.stopPropagation()}
onClick={stopBubbling}
>
+{hiddenTopics.length}
</span>
Expand Down

0 comments on commit 9addd14

Please sign in to comment.