[Emergency] Uncaught BadMethodCallException: Object->__call(): the method 'show' does not exist on 'App\Pages\About\AboutPageController'

GET /about-skywest-airlines/executive-profiles/show/sonya-wolford/

Line 54 in /var/app/current/vendor/silverstripe/framework/src/Core/CustomMethods.php

Source

45      * @throws BadMethodCallException
46      */
47     public function __call($method, $arguments)
48     {
49         // If the method cache was cleared by an an Object::add_extension() / Object::remove_extension()
50         // call, then we should rebuild it.
51         $class = static::class;
52         $config = $this->getExtraMethodConfig($method);
53         if (empty($config)) {
54             throw new BadMethodCallException(
55                 "Object->__call(): the method '$method' does not exist on '$class'"
56             );
57         }
58 
59         switch (true) {
60             case isset($config['callback']): {

Trace