Zend certified PHP/Magento developer

How remove “All” in menu responsive Magento 2.3?

Menu mobile

On file:

vendor/magento/magento2-base/lib/web/mage/menu.js

I modify the line 463:

this.categoryLink = $('')
.attr('href', categoryUrl)
.text($.mage.__('All %1').replace('%1', category));

By :

this.categoryLink = $('')
.attr('href', categoryUrl)
.text(category);

And I launched :

php bin/magento setup:upgrade
php bin/magento cache:flush
php bin/magento setup:static-content:deploy -f
php bin/magento indexer:reindex
php bin/magento setup:di:compile

But that doesn’t change anything, what do you recommend ?