Recently I added this code snippet:
// add a custom filter to modify the theme list
add_filter('enlighter_themes', function ($themes){
// DEBUG: just display the dataset - uncomment the following line to debug issues
// echo '<pre>', print_r($themes, true), '</pre>';
// just show the default theme
return array(
);
});
That was based on our discussion here. The problem I have now discovered is in my backend:

I thought it would atleast show "Atomic" but it shows none.
The theme customizer still lists all of them.
Ideally the front-end will be stripped so the user can only use the chosen theme. But i thought the backend would show all of them incase I want to change my mind as to what the default theme is.