diff --git a/src/components/moderation/LabelsOnMeDialog.tsx b/src/components/moderation/LabelsOnMeDialog.tsx
index 858ac9ce..e98599b4 100644
--- a/src/components/moderation/LabelsOnMeDialog.tsx
+++ b/src/components/moderation/LabelsOnMeDialog.tsx
@@ -162,10 +162,10 @@ function Label({
       <View style={[a.px_md, a.py_sm, t.atoms.bg_contrast_25]}>
         <Text style={[t.atoms.text_contrast_medium]}>
           {isSelfLabel ? (
-            <Trans>This label was applied by you</Trans>
+            <Trans>This label was applied by you.</Trans>
           ) : (
-            <>
-              <Trans>Source:</Trans>{' '}
+            <Trans>
+              Source:{' '}
               <InlineLinkText
                 to={makeProfileLink(
                   labeler ? labeler.creator : {did: label.src, handle: ''},
@@ -175,7 +175,7 @@ function Label({
                   ? sanitizeHandle(labeler.creator.handle, '@')
                   : label.src}
               </InlineLinkText>
-            </>
+            </Trans>
           )}
         </Text>
       </View>
diff --git a/src/screens/Feeds/NoFollowingFeed.tsx b/src/screens/Feeds/NoFollowingFeed.tsx
index 03ced8eb..fa48cca7 100644
--- a/src/screens/Feeds/NoFollowingFeed.tsx
+++ b/src/screens/Feeds/NoFollowingFeed.tsx
@@ -33,18 +33,18 @@ export function NoFollowingFeed() {
 
   return (
     <View style={[a.flex_row, a.flex_wrap, a.align_center, a.py_md, a.px_lg]}>
-      <Text
-        style={[a.leading_snug, t.atoms.text_contrast_medium, {maxWidth: 310}]}>
-        <Trans>Looks like you're missing a following feed.</Trans>{' '}
+      <Text style={[a.leading_snug, t.atoms.text_contrast_medium]}>
+        <Trans>
+          Looks like you're missing a following feed.{' '}
+          <InlineLinkText
+            to="/"
+            label={_(msg`Add the default feed of only people you follow`)}
+            onPress={addRecommendedFeeds}
+            style={[a.leading_snug]}>
+            Click here to add one.
+          </InlineLinkText>
+        </Trans>
       </Text>
-
-      <InlineLinkText
-        to="/"
-        label={_(msg`Add the default feed of only people you follow`)}
-        onPress={addRecommendedFeeds}
-        style={[a.leading_snug]}>
-        <Trans>Click here to add one.</Trans>
-      </InlineLinkText>
     </View>
   )
 }
diff --git a/src/view/screens/ProfileList.tsx b/src/view/screens/ProfileList.tsx
index 6bbe63b9..de3c01ea 100644
--- a/src/view/screens/ProfileList.tsx
+++ b/src/view/screens/ProfileList.tsx
@@ -283,7 +283,11 @@ function Header({rkey, list}: {rkey: string; list: AppBskyGraphDefs.ListView}) {
             pinned,
           },
         ])
-        Toast.show(_(msg`${pinned ? 'Pinned to' : 'Unpinned from'} your feeds`))
+        Toast.show(
+          pinned
+            ? _(msg`Pinned to your feeds`)
+            : _(msg`Unpinned from your feeds`),
+        )
       } else {
         await addSavedFeeds([
           {