Skip to content

Commit 5ba779e

Browse files
kuishou68beaufortfrancois
authored andcommitted
fix: remove double space in navigate error message (ChromeDevTools#1847)
## Summary Fixes a double space in the navigate error message in `src/tools/pages.ts`. ## Problem Line 225 contains an error message with double space: ``` 'Unable to navigate in the selected page: ...' ``` ## Fix Changed to single space: ``` 'Unable to navigate in the selected page: ...' ``` Signed-off-by: Cocoon-Break <54054995+kuishou68@users.noreply.github.com> Signed-off-by: Cocoon-Break <54054995+kuishou68@users.noreply.github.com>
1 parent 85f3b2b commit 5ba779e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tools/pages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ export const navigatePage = definePageTool({
224224
);
225225
} catch (error) {
226226
response.appendResponseLine(
227-
`Unable to navigate in the selected page: ${error.message}.`,
227+
`Unable to navigate in the selected page: ${error.message}.`,
228228
);
229229
}
230230
break;

0 commit comments

Comments
 (0)