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>
This commit is contained in:
Cocoon-Break
2026-04-15 20:01:44 +08:00
committed by GitHub
parent c0664883a5
commit 429e0ca7b8
+1 -1
View File
@@ -222,7 +222,7 @@ export const navigatePage = definePageTool({
);
} catch (error) {
response.appendResponseLine(
`Unable to navigate in the selected page: ${error.message}.`,
`Unable to navigate in the selected page: ${error.message}.`,
);
}
break;