Skip to content

Commit 425c3b4

Browse files
style(webapp): clean up imports and logic in RunPresenter
1 parent b591e28 commit 425c3b4

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
@@ -299,7 +299,8 @@ export function reconcileTraceWithRunLifecycle(
299299

300300
const postgresRunDuration = runData.completedAt
301301
? millisecondsToNanoseconds(
302-
runData.completedAt.getTime() - (runData.rootTaskRun?.createdAt ?? runData.createdAt).getTime()
302+
runData.completedAt.getTime() -
303+
(runData.rootTaskRun?.createdAt ?? runData.createdAt).getTime()
303304
)
304305
: 0;
305306

0 commit comments

Comments
 (0)