Skip to content

Commit

Permalink
q
Browse files Browse the repository at this point in the history
  • Loading branch information
bookpanda committed Oct 16, 2024
1 parent 634182b commit 2358899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/src/pages/content/scripts/fillin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const fillin = async (record: RecordDTO) => {
const answer =
solutions.find((solution) => solution.question === question)?.answer ??
"No answer found";
console.log(`answer for question ${i + 1}`, answer);
console.log(`answer for question ${question} (${i + 1}):`, answer);
const inputs = p.querySelectorAll("input");

inputs.forEach((input) => {
Expand Down

0 comments on commit 2358899

Please sign in to comment.