Skip to content

Commit

Permalink
chore(autofmt): Automated formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 20, 2024
1 parent e5ef803 commit a6a9865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/features/timeline/TimelineCall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { CallEvent } from '../../protos/xyz/block/ftl/v1/console/console_pb
import { verbRefString } from '../verbs/verb.utils'

export const TimelineCall = ({ call }: { call: CallEvent }) => {
const title = `${call.sourceVerbRef?.module ? `${verbRefString(call.sourceVerbRef)} -> ` : ''}${verbRefString(call.destinationVerbRef)}`;
const title = `${call.sourceVerbRef?.module ? `${verbRefString(call.sourceVerbRef)} -> ` : ''}${verbRefString(call.destinationVerbRef)}`
return (
<span title={title}>
{call.sourceVerbRef?.module && (
Expand Down

0 comments on commit a6a9865

Please sign in to comment.