We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cebf6a3 commit ed63f04Copy full SHA for ed63f04
frontend/src/app/home/home.tsx
@@ -21,7 +21,9 @@ function Home() {
21
const [inputValue, setInputValue] = useState<string>("");
22
23
const { data: allPollTaskList } = useAllPollTaskList();
24
- const hasNewsTickerTape = allPollTaskList?.some((item) => item.agent_name === "NewsAgent");
+ const hasNewsTickerTape = allPollTaskList?.some(
25
+ (item) => item.agent_name === "NewsAgent",
26
+ );
27
28
const handleAgentClick = (agentId: string) => {
29
navigate(`/agent/${agentId}`);
0 commit comments