diff --git a/src/view/com/util/load-latest/LoadLatestBtn.web.tsx b/src/view/com/util/load-latest/LoadLatestBtn.web.tsx
index 839685029d..85fb5a0144 100644
--- a/src/view/com/util/load-latest/LoadLatestBtn.web.tsx
+++ b/src/view/com/util/load-latest/LoadLatestBtn.web.tsx
@@ -25,11 +25,11 @@ export const LoadLatestBtn = ({
onPress={onPress}
hitSlop={HITSLOP}
accessibilityRole="button"
- accessibilityLabel={`Load new ${label}`}
+ accessibilityLabel={label}
accessibilityHint="">
- Load new {label}
+ {label}
)
diff --git a/src/view/com/util/load-latest/LoadLatestBtnMobile.tsx b/src/view/com/util/load-latest/LoadLatestBtnMobile.tsx
index 5279696a27..548d30d5a9 100644
--- a/src/view/com/util/load-latest/LoadLatestBtnMobile.tsx
+++ b/src/view/com/util/load-latest/LoadLatestBtnMobile.tsx
@@ -25,15 +25,15 @@ export const LoadLatestBtn = observer(
onPress={onPress}
hitSlop={HITSLOP}
accessibilityRole="button"
- accessibilityLabel={`Load new ${label}`}
- accessibilityHint={`Loads new ${label}`}>
+ accessibilityLabel={label}
+ accessibilityHint={label}>
- Load new {label}
+ {label}
diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx
index f8a497028e..4fe175fc1e 100644
--- a/src/view/screens/Home.tsx
+++ b/src/view/screens/Home.tsx
@@ -258,7 +258,7 @@ const FeedPage = observer(
headerOffset={HEADER_OFFSET}
/>
{feed.hasNewLatest && !feed.isRefreshing && (
-
+
)}
{store.me.notifications.hasNewLatest &&
!store.me.notifications.isRefreshing && (
-
+
)}
)