diff --git a/desktop/src/features/communities/ui/WelcomeSetup.tsx b/desktop/src/features/communities/ui/WelcomeSetup.tsx index 428f9dcfe8..3c2816b294 100644 --- a/desktop/src/features/communities/ui/WelcomeSetup.tsx +++ b/desktop/src/features/communities/ui/WelcomeSetup.tsx @@ -1,6 +1,6 @@ import * as React from "react"; import { openUrl } from "@tauri-apps/plugin-opener"; -import { Check, Copy, Info } from "lucide-react"; +import { Check, Copy } from "lucide-react"; import { useCommunityOnboarding } from "@/features/onboarding/communityOnboarding"; import { normalizeRelayUrl } from "@/features/communities/relayProbe"; @@ -186,18 +186,27 @@ export function WelcomeSetup({ direction={transitionDirection} transitionKey={`join-${transitionDirection}`} > -
-

- Request access to community +
+

+ Request access to a community

-

+

Ask the community host to send you an invite link or add you directly using your public key.

-
-
-
+
+
+
+

+ Step 1: Share your public key +

+ ) : null} +
- -
-
- { - setRelayUrl(event.target.value); - setRelayUrlError(null); - }} - placeholder="https://community.example.com" - spellCheck={false} - type="url" - value={relayUrl} - /> - {relayUrlError ? ( -

- {relayUrlError} -

- ) : ( -

- Once the host adds your public key, enter the URL to - join. You can retry if access is not ready yet. -

- )} -
- -
+ Step 2: Paste in your community URL +

+ { + setRelayUrl(event.target.value); + setRelayUrlError(null); + }} + placeholder="Enter community URL" + spellCheck={false} + type="url" + value={relayUrl} + /> + {relayUrlError ? ( +

+ {relayUrlError} +

+ ) : null}
+