Skip to content

Commit

Permalink
Minor improvement to nav
Browse files Browse the repository at this point in the history
  • Loading branch information
eternauta1337 committed May 5, 2024
1 parent 7b42acc commit 8833d86
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/ethernaut-ui/src/internal/navigate-from.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ module.exports = async function navigateFrom(node, hre) {

const response = await prompt({
type: 'autocomplete',
message: 'Pick a task or scope',
message: node.isScope
? `Pick a task [${node.name}]`
: 'Pick a task or scope',
limit: 15,
choices,
})
Expand Down

0 comments on commit 8833d86

Please sign in to comment.