Skip to content

Commit

Permalink
fix: missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
conlan0 authored Nov 8, 2024
1 parent 285654d commit 58b2016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/MainLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ const hosted = computed(() => store.state.hosted);
const tokenExpired = computed(() => store.state.tokenExpired);
const dash_warning_color = computed(() => store.state.dash_warning_color);
const dash_negative_color = computed(() => store.state.dash_negative_color);
const certExpiryNotificationText = computed(() => store.state.certexpiry_notification_text)
const certExpiryNotificationText = computed(() => store.state.certexpiry_notification_text);
const latestReleaseURL = computed(() => {
return latestTRMMVersion.value
Expand Down

0 comments on commit 58b2016

Please sign in to comment.