Jake Vanderwerf
2026-06-29 4089ba01e0881c89a72332e13bc3a80b6bddec2a
inc/admin/Integrations.php
@@ -15,6 +15,7 @@
      // Hook into WordPress admin
      add_action('admin_menu', [$this, 'registerAdminPages']);
      add_action('admin_enqueue_scripts', [$this, 'enqueueAdminAssets']);
      add_action(BASE.'dashboard_page_integrations', [$this, 'renderDashPage'], 10);
   }
   /**
@@ -95,6 +96,10 @@
//    );
   }
   public function renderDashPage():void
   {
      $this->renderPage();
   }
   /**
    * Render the main integrations page
    */
@@ -107,7 +112,10 @@
         <div class="jvb-admin-content">
            <?php
            // Display any admin notices from form submissions
            if (is_admin()) {
            settings_errors('jvb_integrations');
            }
            $this->displayNotices();
            ?>
@@ -123,7 +131,9 @@
         </div>
      </div>
      <?php $this->renderStyles(); ?>
      <?php if (is_admin()) {
         $this->renderStyles();
      } ?>
      <?php
   }