Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog-crabnebula authored and TejasQ committed Nov 21, 2023
1 parent 0cef711 commit d79db83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web-client/src/components/span/span-detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ export function SpanDetail() {
metadata: monitorData.metadata,
})[0];
// filter child only used for metadata (response in this case)
const children = () => formattedSpan().children.filter((s) => s.name !== "ipc::request::response");
const children = () =>
formattedSpan().children.filter((s) => s.name !== "ipc::request::response");

const responseCode = () => {
const field = getIpcRequestValues({
Expand Down

0 comments on commit d79db83

Please sign in to comment.