mirror of
https://github.com/SchildiChat/schildichat-desktop.git
synced 2025-03-26 10:07:47 +01:00
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From 113e105d802f904e9cfdc3dca4cb6a74f4ae259a Mon Sep 17 00:00:00 2001
|
|
From: SpiritCroc <dev@spiritcroc.de>
|
|
Date: Sun, 27 Oct 2024 20:07:30 +0100
|
|
Subject: Schildify login footer
|
|
|
|
---
|
|
src/components/views/auth/VectorAuthFooter.tsx | 7 ++++---
|
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/src/components/views/auth/VectorAuthFooter.tsx b/src/components/views/auth/VectorAuthFooter.tsx
|
|
index 234c6b127b..44d41004a0 100644
|
|
--- a/src/components/views/auth/VectorAuthFooter.tsx
|
|
+++ b/src/components/views/auth/VectorAuthFooter.tsx
|
|
@@ -14,9 +14,10 @@ import { _t } from "../../../languageHandler";
|
|
const VectorAuthFooter = (): ReactElement => {
|
|
const brandingConfig = SdkConfig.getObject("branding");
|
|
const links = brandingConfig?.get("auth_footer_links") ?? [
|
|
- { text: "Blog", url: "https://element.io/blog" },
|
|
- { text: "Twitter", url: "https://twitter.com/element_hq" },
|
|
- { text: "GitHub", url: "https://github.com/element-hq/element-web" },
|
|
+ //{ text: "Blog", url: "https://element.io/blog" },
|
|
+ //{ text: "Twitter", url: "https://twitter.com/element_hq" },
|
|
+ { text: "About", url: "https://schildi.chat" },
|
|
+ { text: "GitHub", url: "https://github.com/schildichat/schildichat-desktop" },
|
|
];
|
|
|
|
const authFooterLinks: JSX.Element[] = [];
|
|
--
|
|
2.47.0
|
|
|