diff --git a/native/farcaster/farcaster-sync-loading-screen.react.js b/native/farcaster/farcaster-sync-loading-screen.react.js --- a/native/farcaster/farcaster-sync-loading-screen.react.js +++ b/native/farcaster/farcaster-sync-loading-screen.react.js @@ -34,8 +34,20 @@ Fetching Farcaster conversations - Comm is fetching all of your Farcaster messages so they can be backed - up. This can take a while, depending on how many conversations you have. + 1. Fetching in progress: Comm is + fetching all of your Farcaster messages so they can be backed up. This + can take a while, depending on how many chats you have. + + + 2. No E2E encryption: Please note that + Farcaster messages are not end-to-end encrypted, which means the + Farcaster team can see them. For better security, consider using Comm + DMs. + + + 3. Manual refresh: If you ever notice + any missing messages, you can manually refresh all Farcaster chats from + your profile screen, or refresh an individual chat from its settings. {progress ? ( @@ -80,6 +92,9 @@ color: 'panelForegroundSecondaryLabel', paddingBottom: 16, }, + bold: { + fontWeight: 'bold', + }, progressContainer: { flexGrow: 1, alignItems: 'center', diff --git a/web/farcaster/farcaster-sync-loading-screen.css b/web/farcaster/farcaster-sync-loading-screen.css --- a/web/farcaster/farcaster-sync-loading-screen.css +++ b/web/farcaster/farcaster-sync-loading-screen.css @@ -12,7 +12,7 @@ } div.loading { - width: 380px; + width: 600px; min-height: 438px; background: var(--auth-modal-bg); border: var(--auth-modal-border-color) solid 1px; @@ -48,7 +48,7 @@ font-size: var(--s-font-14); line-height: var(--line-height-text); color: var(--fg); - margin: 5px 0; + margin: 8px 0; font-weight: var(--normal); } diff --git a/web/farcaster/farcaster-sync-loading-screen.react.js b/web/farcaster/farcaster-sync-loading-screen.react.js --- a/web/farcaster/farcaster-sync-loading-screen.react.js +++ b/web/farcaster/farcaster-sync-loading-screen.react.js @@ -36,9 +36,19 @@

Fetching Farcaster conversations

- Comm is fetching all of your Farcaster messages so they can be - backed up. This can take a while, depending on how many - conversations you have. + 1. Fetching in progress: Comm is fetching all of + your Farcaster messages so they can be backed up. This can take a + while, depending on how many chats you have. +

+

+ 2. No E2E encryption: Please note that Farcaster + messages are not end-to-end encrypted, which means the Farcaster + team can see them. For better security, consider using Comm DMs. +

+

+ 3. Manual refresh: If you ever notice any missing + messages, you can manually refresh all Farcaster chats from the + settings page, or refresh an individual chat from its settings.

{progressComponent}