Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Jan 15, 2025
2 parents d55f369 + a0cbf5d commit 2e08133
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions components/ui/HealthIndicator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,9 @@ const systemHealth = useSystemHealth();
const router = useRouter();
const contextualHealth = computed(() => {
switch (router.currentRoute.value.path) {
case "/":
return systemHealth.getSidechainSystemHealth.overall();
case "/teerdays":
return systemHealth.getIntegriteeSystemHealth.overall();
default:
return Health.Unknown;
}
// case "/teerdays":
// return systemHealth.getIntegriteeSystemHealth.overall();
return systemHealth.getSidechainSystemHealth.overall();
});
const showHealthDetailsOverlay = ref(false);
Expand Down

0 comments on commit 2e08133

Please sign in to comment.