Skip to content

Commit 9f51647

Browse files
committed
Prefill the server URL
1 parent c130324 commit 9f51647

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
From 6bfdc667aefab2002b5055260ac4c020587acacc Mon Sep 17 00:00:00 2001
2+
From: I-Al-Istannen <[email protected]>
3+
Date: Wed, 5 Mar 2025 23:47:27 +0100
4+
Subject: [PATCH 8/8] Prefill chat.kitctf.de URL
5+
6+
---
7+
app/screens/server/index.tsx | 2 +-
8+
1 file changed, 1 insertion(+), 1 deletion(-)
9+
10+
diff --git a/app/screens/server/index.tsx b/app/screens/server/index.tsx
11+
index 41ec13d35..315e1f953 100644
12+
--- a/app/screens/server/index.tsx
13+
+++ b/app/screens/server/index.tsx
14+
@@ -86,7 +86,7 @@ const Server = ({
15+
const [connecting, setConnecting] = useState(false);
16+
const [displayName, setDisplayName] = useState<string>('');
17+
const [buttonDisabled, setButtonDisabled] = useState(true);
18+
- const [url, setUrl] = useState<string>('');
19+
+ const [url, setUrl] = useState<string>('https://chat.kitctf.de');
20+
const [displayNameError, setDisplayNameError] = useState<string | undefined>();
21+
const [urlError, setUrlError] = useState<string | undefined>();
22+
const styles = getStyleSheet(theme);
23+
--
24+
2.47.2
25+

0 commit comments

Comments
 (0)