@blockrun/runcode 2.5.9 → 2.5.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui/app.js +2 -0
- package/package.json +1 -1
package/dist/ui/app.js
CHANGED
|
@@ -252,6 +252,8 @@ function RunCodeApp({ initialModel, workDir, walletAddress, walletBalance, chain
|
|
|
252
252
|
updateBalance: (bal) => setBalance(bal),
|
|
253
253
|
requestPermission: (toolName, description) => {
|
|
254
254
|
return new Promise((resolve) => {
|
|
255
|
+
// Ring the terminal bell — causes tab to show notification badge in iTerm2/Terminal.app
|
|
256
|
+
process.stderr.write('\x07');
|
|
255
257
|
setPermissionRequest({ toolName, description, resolve });
|
|
256
258
|
});
|
|
257
259
|
},
|