Skip to content

Commit

Permalink
fixed prettier(frontend)
Browse files Browse the repository at this point in the history
  • Loading branch information
bekossy committed Nov 28, 2024
1 parent 0cc9f14 commit a61b9ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agenta-web/src/components/Playground/Views/TestView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ const BoxComponent: React.FC<BoxComponentProps> = ({
}
}, [traceSpans])

const activeTrace = useMemo(() => (traces ? (traces[0] ?? null) : null), [traces])
const activeTrace = useMemo(() => (traces ? traces[0] ?? null : null), [traces])
const [selected, setSelected] = useState("")

useEffect(() => {
Expand Down

0 comments on commit a61b9ce

Please sign in to comment.