Skip to content

Commit

Permalink
fix: update error message in input-generators.ts to match test expect…
Browse files Browse the repository at this point in the history
…ations

Co-Authored-By: [email protected] <[email protected]>
  • Loading branch information
1 parent 2810f14 commit e5c771c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/helpers/src/input-generators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function findSelectorInCleanContent(
const selectorIndex = decodedString.indexOf(selector);

if (selectorIndex === -1) {
throw new Error(`SHA precompute selector "${selector}" not found in the body`);
throw new Error(`SHA precompute selector "${selector}" not found in cleaned body`);
}

// Map back to original position using our index maps
Expand Down

0 comments on commit e5c771c

Please sign in to comment.