diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts
index b8e2e9a3c..391314162 100644
--- a/src/lib/statsig/gates.ts
+++ b/src/lib/statsig/gates.ts
@@ -15,4 +15,3 @@ export type Gate =
| 'remove_show_latest_button'
| 'test_gate_1'
| 'test_gate_2'
- | 'welcome_modal'
diff --git a/src/view/shell/index.web.tsx b/src/view/shell/index.web.tsx
index 268e77eae..4b8b47acd 100644
--- a/src/view/shell/index.web.tsx
+++ b/src/view/shell/index.web.tsx
@@ -8,7 +8,6 @@ import {RemoveScrollBar} from 'react-remove-scroll-bar'
import {useIntentHandler} from '#/lib/hooks/useIntentHandler'
import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
import {type NavigationProp} from '#/lib/routes/types'
-import {useGate} from '#/lib/statsig/statsig'
import {useGeolocationStatus} from '#/state/geolocation'
import {useIsDrawerOpen, useSetDrawerOpen} from '#/state/shell'
import {useComposerKeyboardShortcut} from '#/state/shell/composer/useComposerKeyboardShortcut'
@@ -46,7 +45,6 @@ function ShellInner() {
const [showDrawerDelayedExit, setShowDrawerDelayedExit] = useState(showDrawer)
const {state: policyUpdateState} = usePolicyUpdateContext()
const welcomeModalControl = useWelcomeModal()
- const gate = useGate()
useLayoutEffect(() => {
if (showDrawer !== showDrawerDelayedExit) {
@@ -85,8 +83,7 @@ function ShellInner() {
- {/* Show welcome modal if the gate is enabled */}
- {welcomeModalControl.isOpen && gate('welcome_modal') && (
+ {welcomeModalControl.isOpen && (
)}
--
2.51.2
From f170313f706d6ec992b02780a449f039900f2e51 Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 3 Oct 2025 23:08:05 +0300
Subject: [PATCH 2/3] patch sonner-native to remove exit animations (#9092)
---
patches/sonner-native+0.21.0.patch | 22 ++++++++++++++++++++++
patches/sonner-native+0.21.0.patch.md | 3 +++
2 files changed, 25 insertions(+)
create mode 100644 patches/sonner-native+0.21.0.patch
create mode 100644 patches/sonner-native+0.21.0.patch.md
diff --git a/patches/sonner-native+0.21.0.patch b/patches/sonner-native+0.21.0.patch
new file mode 100644
index 000000000..3fe7cc0aa
--- /dev/null
+++ b/patches/sonner-native+0.21.0.patch
@@ -0,0 +1,22 @@
+diff --git a/node_modules/sonner-native/lib/commonjs/toast.js b/node_modules/sonner-native/lib/commonjs/toast.js
+index 121816a..0c3c7bd 100644
+--- a/node_modules/sonner-native/lib/commonjs/toast.js
++++ b/node_modules/sonner-native/lib/commonjs/toast.js
+@@ -264,7 +264,7 @@ const Toast = exports.Toast = /*#__PURE__*/React.forwardRef(({
+ ...toastSwipeHandlerProps,
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
+ entering: entering,
+- exiting: exiting,
++ exiting: _reactNative.Platform.OS === 'android' ? undefined : exiting,
+ children: jsx
+ })
+ });
+@@ -274,7 +274,7 @@ const Toast = exports.Toast = /*#__PURE__*/React.forwardRef(({
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
+ style: [unstyled ? undefined : elevationStyle, defaultStyles.toast, toastStyleCtx, styles?.toast, style, wiggleAnimationStyle],
+ entering: entering,
+- exiting: exiting,
++ exiting: _reactNative.Platform.OS === 'android' ? undefined : exiting,
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
+ style: [defaultStyles.toastContent, toastContentStyleCtx, styles?.toastContent],
+ children: [promiseOptions || variant === 'loading' ? 'loading' in icons ? icons.loading : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ActivityIndicator, {}) : icon ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
diff --git a/patches/sonner-native+0.21.0.patch.md b/patches/sonner-native+0.21.0.patch.md
new file mode 100644
index 000000000..0a7fbafcc
--- /dev/null
+++ b/patches/sonner-native+0.21.0.patch.md
@@ -0,0 +1,3 @@
+# sonner-native+0.21.0.patch
+
+Removes Reanimated exit layout animations from the toasts. This was causing crashes if the toast was hidden while you were scrolling a flatlist.
--
2.51.2
From 0c0c21a0aa796ca437200cbe794d2f202f560b43 Mon Sep 17 00:00:00 2001
From: pfrazee <1270099+pfrazee@users.noreply.github.com>
Date: Sat, 4 Oct 2025 02:30:44 +0000
Subject: [PATCH 3/3] Nightly source-language update
---
src/locale/locales/en/messages.po | 178 +++++++++++++++---------------
1 file changed, 89 insertions(+), 89 deletions(-)
diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po
index 3279939cb..e3f33b9ef 100644
--- a/src/locale/locales/en/messages.po
+++ b/src/locale/locales/en/messages.po
@@ -124,7 +124,7 @@ msgstr ""
msgid "{0, plural, other {# people have}} used this starter pack!"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:356
+#: src/components/dialogs/StarterPackDialog.tsx:360
msgid "{0, plural, other {+# more}}"
msgstr ""
@@ -592,18 +592,18 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361
#: src/screens/Messages/components/RequestButtons.tsx:91
-#: src/view/com/profile/ProfileMenu.tsx:161
+#: src/view/com/profile/ProfileMenu.tsx:166
msgctxt "toast"
msgid "Account blocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:174
+#: src/view/com/profile/ProfileMenu.tsx:179
msgctxt "toast"
msgid "Account followed"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
-#: src/view/com/profile/ProfileMenu.tsx:137
+#: src/view/com/profile/ProfileMenu.tsx:142
msgctxt "toast"
msgid "Account muted"
msgstr ""
@@ -626,18 +626,18 @@ msgid "Account removed from quick access"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
-#: src/view/com/profile/ProfileMenu.tsx:151
+#: src/view/com/profile/ProfileMenu.tsx:156
msgctxt "toast"
msgid "Account unblocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:186
+#: src/view/com/profile/ProfileMenu.tsx:191
msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374
-#: src/view/com/profile/ProfileMenu.tsx:127
+#: src/view/com/profile/ProfileMenu.tsx:132
msgctxt "toast"
msgid "Account unmuted"
msgstr ""
@@ -658,8 +658,8 @@ msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:333
-#: src/components/dialogs/StarterPackDialog.tsx:370
-#: src/components/dialogs/StarterPackDialog.tsx:376
+#: src/components/dialogs/StarterPackDialog.tsx:374
+#: src/components/dialogs/StarterPackDialog.tsx:380
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr ""
@@ -668,7 +668,7 @@ msgstr ""
msgid "Add {0} more to continue"
msgstr ""
-#: src/components/StarterPack/Wizard/WizardListCard.tsx:61
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:62
msgid "Add {displayName} to starter pack"
msgstr ""
@@ -785,8 +785,8 @@ msgstr ""
msgid "Add this feed to your feeds"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/profile/ProfileMenu.tsx:320
+#: src/view/com/profile/ProfileMenu.tsx:322
+#: src/view/com/profile/ProfileMenu.tsx:325
msgid "Add to lists"
msgstr ""
@@ -794,9 +794,9 @@ msgstr ""
msgid "Add to saved posts"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:175
-#: src/view/com/profile/ProfileMenu.tsx:308
-#: src/view/com/profile/ProfileMenu.tsx:311
+#: src/components/dialogs/StarterPackDialog.tsx:176
+#: src/view/com/profile/ProfileMenu.tsx:313
+#: src/view/com/profile/ProfileMenu.tsx:316
msgid "Add to starter packs"
msgstr ""
@@ -809,7 +809,7 @@ msgstr ""
msgid "Added to list"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:257
+#: src/components/dialogs/StarterPackDialog.tsx:258
msgid "Added to starter pack"
msgstr ""
@@ -1311,7 +1311,7 @@ msgstr ""
msgid "Before creating a post or replying, you must first verify your email."
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:70
+#: src/components/dialogs/StarterPackDialog.tsx:71
#: src/components/StarterPack/ProfileStarterPacks.tsx:231
#: src/components/StarterPack/ProfileStarterPacks.tsx:241
msgid "Before creating a starter pack, you must first verify your email."
@@ -1351,7 +1351,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:760
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:328
-#: src/view/com/profile/ProfileMenu.tsx:490
+#: src/view/com/profile/ProfileMenu.tsx:495
msgid "Block"
msgstr ""
@@ -1361,13 +1361,13 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647
#: src/screens/Messages/components/RequestButtons.tsx:144
#: src/screens/Messages/components/RequestButtons.tsx:146
-#: src/view/com/profile/ProfileMenu.tsx:396
-#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:401
+#: src/view/com/profile/ProfileMenu.tsx:408
msgid "Block account"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:755
-#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/com/profile/ProfileMenu.tsx:478
msgid "Block Account?"
msgstr ""
@@ -1419,7 +1419,7 @@ msgid "Blocked Accounts"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:757
-#: src/view/com/profile/ProfileMenu.tsx:485
+#: src/view/com/profile/ProfileMenu.tsx:490
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1435,7 +1435,7 @@ msgstr ""
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:482
+#: src/view/com/profile/ProfileMenu.tsx:487
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr ""
@@ -1920,7 +1920,7 @@ msgstr ""
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
#: src/components/dialogs/SearchablePeopleList.tsx:295
-#: src/components/dialogs/StarterPackDialog.tsx:178
+#: src/components/dialogs/StarterPackDialog.tsx:179
#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:387
#: src/components/dms/ReportDialog.tsx:396
@@ -1968,7 +1968,7 @@ msgstr ""
msgid "Close dialog"
msgstr ""
-#: src/view/shell/index.web.tsx:110
+#: src/view/shell/index.web.tsx:107
msgid "Close drawer menu"
msgstr ""
@@ -2281,8 +2281,8 @@ msgstr ""
msgid "Copy App Password"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:433
-#: src/view/com/profile/ProfileMenu.tsx:436
+#: src/view/com/profile/ProfileMenu.tsx:438
+#: src/view/com/profile/ProfileMenu.tsx:441
msgid "Copy at:// URI"
msgstr ""
@@ -2297,8 +2297,8 @@ msgid "Copy code"
msgstr ""
#: src/screens/Settings/components/ChangeHandleDialog.tsx:501
-#: src/view/com/profile/ProfileMenu.tsx:442
-#: src/view/com/profile/ProfileMenu.tsx:445
+#: src/view/com/profile/ProfileMenu.tsx:447
+#: src/view/com/profile/ProfileMenu.tsx:450
msgid "Copy DID"
msgstr ""
@@ -2327,8 +2327,8 @@ msgstr ""
msgid "Copy link to post"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:246
-#: src/view/com/profile/ProfileMenu.tsx:257
+#: src/view/com/profile/ProfileMenu.tsx:251
+#: src/view/com/profile/ProfileMenu.tsx:262
msgid "Copy link to profile"
msgstr ""
@@ -2411,8 +2411,8 @@ msgstr ""
#. Text on button to create a new starter pack
#. Text on button to create a new starter pack
-#: src/components/dialogs/StarterPackDialog.tsx:111
-#: src/components/dialogs/StarterPackDialog.tsx:200
+#: src/components/dialogs/StarterPackDialog.tsx:112
+#: src/components/dialogs/StarterPackDialog.tsx:201
#: src/components/StarterPack/ProfileStarterPacks.tsx:296
msgid "Create"
msgstr ""
@@ -2483,8 +2483,8 @@ msgstr ""
msgid "Create report for {0}"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:106
-#: src/components/dialogs/StarterPackDialog.tsx:195
+#: src/components/dialogs/StarterPackDialog.tsx:107
+#: src/components/dialogs/StarterPackDialog.tsx:196
msgid "Create starter pack"
msgstr ""
@@ -2518,7 +2518,7 @@ msgstr ""
msgid "Customize who can interact with this post."
msgstr ""
-#: src/screens/Onboarding/Layout.tsx:60
+#: src/screens/Onboarding/Layout.tsx:61
msgid "Customizes your Bluesky experience"
msgstr ""
@@ -2981,8 +2981,8 @@ msgstr ""
msgid "Edit list details"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:335
+#: src/view/com/profile/ProfileMenu.tsx:334
+#: src/view/com/profile/ProfileMenu.tsx:340
msgid "Edit live status"
msgstr ""
@@ -3415,7 +3415,7 @@ msgstr ""
msgid "Failed to add emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:269
+#: src/components/dialogs/StarterPackDialog.tsx:270
msgid "Failed to add to starter pack"
msgstr ""
@@ -3521,7 +3521,7 @@ msgstr ""
msgid "Failed to remove emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:288
+#: src/components/dialogs/StarterPackDialog.tsx:289
msgid "Failed to remove from starter pack"
msgstr ""
@@ -3625,7 +3625,7 @@ msgstr ""
msgid "Feed menu"
msgstr ""
-#: src/components/StarterPack/Wizard/WizardListCard.tsx:57
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:58
msgid "Feed toggle"
msgstr ""
@@ -3787,8 +3787,8 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:287
-#: src/view/com/profile/ProfileMenu.tsx:298
+#: src/view/com/profile/ProfileMenu.tsx:292
+#: src/view/com/profile/ProfileMenu.tsx:303
msgid "Follow account"
msgstr ""
@@ -4079,8 +4079,8 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:197
#: src/components/ReportDialog/SelectReportOptionView.tsx:81
#: src/components/ReportDialog/SubmitView.tsx:110
-#: src/screens/Onboarding/Layout.tsx:120
-#: src/screens/Onboarding/Layout.tsx:213
+#: src/screens/Onboarding/Layout.tsx:121
+#: src/screens/Onboarding/Layout.tsx:214
#: src/screens/Signup/BackNextButtons.tsx:35
msgid "Go back to previous step"
msgstr ""
@@ -4099,8 +4099,8 @@ msgstr ""
msgid "Go Home"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:330
-#: src/view/com/profile/ProfileMenu.tsx:337
+#: src/view/com/profile/ProfileMenu.tsx:335
+#: src/view/com/profile/ProfileMenu.tsx:342
msgid "Go live"
msgstr ""
@@ -5272,8 +5272,8 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:149
-#: src/view/com/profile/ProfileMenu.tsx:223
-#: src/view/com/profile/ProfileMenu.tsx:229
+#: src/view/com/profile/ProfileMenu.tsx:228
+#: src/view/com/profile/ProfileMenu.tsx:234
msgid "More options"
msgstr ""
@@ -5306,8 +5306,8 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:628
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
-#: src/view/com/profile/ProfileMenu.tsx:375
-#: src/view/com/profile/ProfileMenu.tsx:382
+#: src/view/com/profile/ProfileMenu.tsx:380
+#: src/view/com/profile/ProfileMenu.tsx:387
msgid "Mute account"
msgstr ""
@@ -5548,7 +5548,7 @@ msgstr ""
msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:192
+#: src/components/dialogs/StarterPackDialog.tsx:193
msgid "New starter pack"
msgstr ""
@@ -5758,7 +5758,7 @@ msgstr ""
msgid "Not in Mississippi?"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:497
+#: src/view/com/profile/ProfileMenu.tsx:502
msgid "Note about sharing"
msgstr ""
@@ -6222,7 +6222,7 @@ msgstr ""
msgid "Permission to access your photo library was denied. Please enable it in your system settings."
msgstr ""
-#: src/components/StarterPack/Wizard/WizardListCard.tsx:57
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:58
msgid "Person toggle"
msgstr ""
@@ -6881,11 +6881,11 @@ msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:443
-#: src/components/dialogs/StarterPackDialog.tsx:370
-#: src/components/dialogs/StarterPackDialog.tsx:376
+#: src/components/dialogs/StarterPackDialog.tsx:374
+#: src/components/dialogs/StarterPackDialog.tsx:380
#: src/components/FeedCard.tsx:343
-#: src/components/StarterPack/Wizard/WizardListCard.tsx:104
-#: src/components/StarterPack/Wizard/WizardListCard.tsx:111
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:105
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:112
#: src/screens/Bookmarks/index.tsx:255
#: src/screens/Settings/Settings.tsx:664
#: src/view/com/modals/UserAddRemoveLists.tsx:235
@@ -6893,7 +6893,7 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: src/components/StarterPack/Wizard/WizardListCard.tsx:60
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:61
msgid "Remove {displayName} from starter pack"
msgstr ""
@@ -6996,8 +6996,8 @@ msgstr ""
#: src/components/verification/VerificationRemovePrompt.tsx:46
#: src/components/verification/VerificationsDialog.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:348
-#: src/view/com/profile/ProfileMenu.tsx:351
+#: src/view/com/profile/ProfileMenu.tsx:353
+#: src/view/com/profile/ProfileMenu.tsx:356
msgid "Remove verification"
msgstr ""
@@ -7027,7 +7027,7 @@ msgstr ""
msgid "Removed from saved posts"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:276
+#: src/components/dialogs/StarterPackDialog.tsx:277
msgid "Removed from starter pack"
msgstr ""
@@ -7135,8 +7135,8 @@ msgstr ""
msgid "Report"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:415
-#: src/view/com/profile/ProfileMenu.tsx:418
+#: src/view/com/profile/ProfileMenu.tsx:420
+#: src/view/com/profile/ProfileMenu.tsx:423
msgid "Report account"
msgstr ""
@@ -7570,8 +7570,8 @@ msgstr ""
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:266
-#: src/view/com/profile/ProfileMenu.tsx:269
+#: src/view/com/profile/ProfileMenu.tsx:271
+#: src/view/com/profile/ProfileMenu.tsx:274
msgid "Search posts"
msgstr ""
@@ -7861,7 +7861,7 @@ msgstr ""
msgid "Set new password"
msgstr ""
-#: src/screens/Onboarding/Layout.tsx:49
+#: src/screens/Onboarding/Layout.tsx:50
msgid "Set up your account"
msgstr ""
@@ -7953,7 +7953,7 @@ msgstr ""
msgid "Share a fun fact!"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:502
+#: src/view/com/profile/ProfileMenu.tsx:507
msgid "Share anyway"
msgstr ""
@@ -8001,8 +8001,8 @@ msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:171
#: src/screens/StarterPack/StarterPackScreen.tsx:615
#: src/screens/StarterPack/StarterPackScreen.tsx:623
-#: src/view/com/profile/ProfileMenu.tsx:246
-#: src/view/com/profile/ProfileMenu.tsx:259
+#: src/view/com/profile/ProfileMenu.tsx:251
+#: src/view/com/profile/ProfileMenu.tsx:264
msgid "Share via..."
msgstr ""
@@ -8684,7 +8684,7 @@ msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
-#: src/view/com/profile/ProfileMenu.tsx:478
+#: src/view/com/profile/ProfileMenu.tsx:483
msgid "The account will be able to interact with you after unblocking."
msgstr ""
@@ -8865,12 +8865,12 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:101
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:123
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:131
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/profile/ProfileMenu.tsx:155
-#: src/view/com/profile/ProfileMenu.tsx:165
-#: src/view/com/profile/ProfileMenu.tsx:178
-#: src/view/com/profile/ProfileMenu.tsx:190
+#: src/view/com/profile/ProfileMenu.tsx:136
+#: src/view/com/profile/ProfileMenu.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:160
+#: src/view/com/profile/ProfileMenu.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:183
+#: src/view/com/profile/ProfileMenu.tsx:195
msgid "There was an issue! {0}"
msgstr ""
@@ -9073,7 +9073,7 @@ msgstr ""
msgid "This post's author has disabled quote posts."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:499
+#: src/view/com/profile/ProfileMenu.tsx:504
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
@@ -9312,7 +9312,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:328
#: src/screens/ProfileList/components/Header.tsx:171
#: src/screens/ProfileList/components/Header.tsx:178
-#: src/view/com/profile/ProfileMenu.tsx:490
+#: src/view/com/profile/ProfileMenu.tsx:495
msgid "Unblock"
msgstr ""
@@ -9323,13 +9323,13 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:395
-#: src/view/com/profile/ProfileMenu.tsx:401
+#: src/view/com/profile/ProfileMenu.tsx:400
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Unblock account"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:322
-#: src/view/com/profile/ProfileMenu.tsx:472
+#: src/view/com/profile/ProfileMenu.tsx:477
msgid "Unblock Account?"
msgstr ""
@@ -9362,8 +9362,8 @@ msgstr ""
msgid "Unfollow {0}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:286
-#: src/view/com/profile/ProfileMenu.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:291
+#: src/view/com/profile/ProfileMenu.tsx:301
msgid "Unfollow account"
msgstr ""
@@ -9410,8 +9410,8 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
-#: src/view/com/profile/ProfileMenu.tsx:374
-#: src/view/com/profile/ProfileMenu.tsx:380
+#: src/view/com/profile/ProfileMenu.tsx:379
+#: src/view/com/profile/ProfileMenu.tsx:385
msgid "Unmute account"
msgstr ""
@@ -9734,8 +9734,8 @@ msgstr ""
#: src/components/verification/VerificationCreatePrompt.tsx:84
#: src/components/verification/VerificationCreatePrompt.tsx:86
-#: src/view/com/profile/ProfileMenu.tsx:358
-#: src/view/com/profile/ProfileMenu.tsx:361
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:366
msgid "Verify account"
msgstr ""
@@ -10512,7 +10512,7 @@ msgstr ""
msgid "You have no lists."
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:100
+#: src/components/dialogs/StarterPackDialog.tsx:101
msgid "You have no starter packs."
msgstr ""