Skip to content

Commit 8c86a29

Browse files
committed
fix: remove double space in navigate error message
Error message had double space: 'Unable to navigate in the selected page' Corrected to single space: 'Unable to navigate in the selected page' Signed-off-by: Cocoon-Break <54054995+kuishou68@users.noreply.github.com>
1 parent 728d902 commit 8c86a29

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)