diff options
| author | MohamedBassem <me@mbassem.com> | 2025-11-08 17:18:55 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2025-11-08 18:20:22 +0000 |
| commit | a2203196ff3353a6f7efaac5df25844880807baf (patch) | |
| tree | 62272773af9e94017796170e38793418a8091131 /apps/mobile/app | |
| parent | ec621bf55aefda6649ce49d7ece6065ab2c54368 (diff) | |
| download | karakeep-a2203196ff3353a6f7efaac5df25844880807baf.tar.zst | |
fix(mobile): fix default address not correctly stored in settings
Diffstat (limited to 'apps/mobile/app')
| -rw-r--r-- | apps/mobile/app/signin.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/mobile/app/signin.tsx b/apps/mobile/app/signin.tsx index 3dc41a0c..6a554f89 100644 --- a/apps/mobile/app/signin.tsx +++ b/apps/mobile/app/signin.tsx @@ -30,7 +30,7 @@ export default function Signin() { const [loginType, setLoginType] = useState<LoginType>(LoginType.Password); const [isEditingServerAddress, setIsEditingServerAddress] = useState(false); const [tempServerAddress, setTempServerAddress] = useState( - "https://cloud.karakeep.app", + settings.address ?? "https://cloud.karakeep.app", ); const [isCustomHeadersModalVisible, setIsCustomHeadersModalVisible] = useState(false); |
