Skip to content

Commit

Permalink
Update src/pages/benchmarks/[benchmark_id]/index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
katconnors authored Jan 3, 2025
1 parent 4b4d96a commit a68a439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/benchmarks/[benchmark_id]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const BenchmarkPage = () => {
const [currentTrialIdx, setCurrentTrialIdx] = useState(0);
const currentTrial = task?.trials[currentTrialIdx] || null;

const trialAddedRef = useRef(false);
const trialAddedRef = useRef<boolean>(false);

const hasInputChanged =
currentTrial?.notes !== notesInputValue ||
Expand Down

0 comments on commit a68a439

Please sign in to comment.