Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Commit

Permalink
fix(dom-utils): lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danielschwartz85 committed Sep 2, 2019
1 parent 2d47c3a commit cc50558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dom-utils/lib/DomCapture.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class DomCapture {
} while (result.status === SCRIPT_RESPONSE_STATUS.WIP && !isCheckTimerTimedOut);

if (result.status === SCRIPT_RESPONSE_STATUS.ERROR) {
throw new Error('DomCapture Error: ' + result.error);
throw new Error(`DomCapture Error: ${result.error}`);
}

if (isCheckTimerTimedOut) {
Expand Down

0 comments on commit cc50558

Please sign in to comment.