diff --git a/packages/@statusfy/core/client/components/Header.vue b/packages/@statusfy/core/client/components/Header.vue
index 2ed8ff88f..bfb6cfe73 100644
--- a/packages/@statusfy/core/client/components/Header.vue
+++ b/packages/@statusfy/core/client/components/Header.vue
@@ -13,7 +13,10 @@
class="title">
{{ $t('title') }}
-
+
+
+
+
diff --git a/packages/@statusfy/core/client/components/Subscribe.vue b/packages/@statusfy/core/client/components/Subscribe.vue
index 5911b842c..2b1d5e69e 100644
--- a/packages/@statusfy/core/client/components/Subscribe.vue
+++ b/packages/@statusfy/core/client/components/Subscribe.vue
@@ -5,7 +5,7 @@
@click="toggleModal">{{ $t('notifications.buttons.subscribe') }}
@@ -100,20 +100,11 @@ export default {
return results
},
icalendarUrl () {
- if (process.client) {
- return `webcal://${window.location.hostname}/calendars/scheduled.${this.$i18n.locale}.ics`
- } else {
- return null
- }
+ return `webcal://${window.location.hostname}/calendars/scheduled.${this.$i18n.locale}.ics`
},
feedsUrls () {
- let atom
- let rss
-
- if (process.client) {
- atom = `//${window.location.hostname}/feeds/incidents.${this.$i18n.locale}.atom`
- rss = `//${window.location.hostname}/feeds/incidents.${this.$i18n.locale}.xml`
- }
+ const atom = `//${window.location.hostname}/feeds/incidents.${this.$i18n.locale}.atom`
+ const rss = `//${window.location.hostname}/feeds/incidents.${this.$i18n.locale}.xml`
return {
atom,