Umbraco 13 custom dashboard called twice

Has anyone else experienced that the js function for a custom dashboard is called twice when the tab is clicked?

angular
  .module("umbraco")
  .controller("MyCustomDashboardController",
    function($scope, $timeout) {
      console.log("MyCustomDashboardController initialized ", new Date());
    }
  );