Skip to content

Commit c78797c

Browse files
style(webapp): clean up imports and logic in RunPresenter
1 parent 1c67196 commit c78797c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/webapp/app/presenters/v3/RunPresenter.server.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,8 @@ export function reconcileTraceWithRunLifecycle(
310310

311311
const postgresRunDuration = runData.completedAt
312312
? millisecondsToNanoseconds(
313-
runData.completedAt.getTime() - (runData.rootTaskRun?.createdAt ?? runData.createdAt).getTime()
313+
runData.completedAt.getTime() -
314+
(runData.rootTaskRun?.createdAt ?? runData.createdAt).getTime()
314315
)
315316
: 0;
316317

0 commit comments

Comments
 (0)