Skip to content

Commit

Permalink
Fixed bug that showed the loading spinner on timestamp pages
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpocock committed Dec 10, 2024
1 parent 6533760 commit dcfc114
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/evalite-ui/app/routes/eval.$name.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ export default function Page() {
evalStatus={evaluation.status}
isRunning={
serverState.state.type === "running" &&
serverState.state.filepaths.has(evaluation.filepath)
serverState.state.filepaths.has(evaluation.filepath) &&
evaluation.created_at === latestDate
}
score={score}
state={getScoreState(score, prevScore)}
Expand Down

0 comments on commit dcfc114

Please sign in to comment.