diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json index 2407653a7..afde3e2c6 100644 --- a/frontend/src/locales/de.json +++ b/frontend/src/locales/de.json @@ -52,11 +52,6 @@ "text": "Finde Mitglieder aller Communities auf einer Landkarte? Dann musst du selbst erst deinen Standort festlegen." } }, - "circles": { - "button": "Kreise starten...", - "headline": "Gemeinsam unterstützen wir einander – achtsam in Kreiskultur.", - "text": "Mit Klick auf den Button öffnest Du die Kooperationsplattform in einem neuen Browser-Fenster." - }, "community": { "admins": "Administratoren", "choose-another-community": "Eine andere Gemeinschaft auswählen", diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json index 77c18856d..daeaa59a4 100644 --- a/frontend/src/locales/en.json +++ b/frontend/src/locales/en.json @@ -52,11 +52,6 @@ "text": "Find Members of all Communities on a Map? Then you have to capture your Location first." } }, - "circles": { - "button": "Start Circles...", - "headline": "Together we support each other - mindful in circle culture.", - "text": "Click on the button to open the cooperation platform in a new browser window." - }, "community": { "admins": "Administrators", "choose-another-community": "Choose another community", diff --git a/frontend/src/pages/Login.vue b/frontend/src/pages/Login.vue index a5e245291..9ee6e76b4 100644 --- a/frontend/src/pages/Login.vue +++ b/frontend/src/pages/Login.vue @@ -61,7 +61,7 @@ import InputPassword from '@/components/Inputs/InputPassword' import InputEmail from '@/components/Inputs/InputEmail' import Message from '@/components/Message/Message' -import { login, authenticateHumhubAutoLoginProject } from '@/graphql/mutations ' +import { login, authenticateHumhubAutoLoginProject } from '@/graphql/mutations' import { ref, computed } from 'vue' import { useStore } from 'vuex' import { useI18n } from 'vue-i18n' diff --git a/frontend/src/routes/router.test.js b/frontend/src/routes/router.test.js index e5fd67406..e18faf865 100644 --- a/frontend/src/routes/router.test.js +++ b/frontend/src/routes/router.test.js @@ -70,8 +70,8 @@ describe('router', () => { expect(defaultRoute.redirect()).toEqual({ path: '/login' }) }) - it('has 21 routes defined', () => { - expect(routes).toHaveLength(21) + it('has 20 routes defined', () => { + expect(routes).toHaveLength(20) }) const testRoute = (path, expectedName, requiresAuth = true) => {