Skip to content

Commit 429e0ca

Browse files
authored
fix: remove double space in navigate error message (#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 c066488 commit 429e0ca

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
@@ -222,7 +222,7 @@ export const navigatePage = definePageTool({
222222
);
223223
} catch (error) {
224224
response.appendResponseLine(
225-
`Unable to navigate in the selected page: ${error.message}.`,
225+
`Unable to navigate in the selected page: ${error.message}.`,
226226
);
227227
}
228228
break;

0 commit comments

Comments
 (0)