Copy update

This commit is contained in:
Eric Bailey
2026-01-14 14:53:40 -06:00
parent 2bab8a2e1c
commit ddaeea5728
2 changed files with 8 additions and 4 deletions
@@ -84,7 +84,11 @@ function Inner({
},
)
// must protect to avoid closing an already closed dialog
/*
* If there is no `undoAction`, it means that the action was already
* undone, and therefore the menu would have been closed prior to the
* undo happening.
*/
if (undoAction) {
control.close()
}
@@ -107,7 +111,7 @@ function Inner({
<Trans>
Live events appear occasionally when something exciting is
happening. If you'd like, you can hide this particular event, or all
events.
events for this placement in your app interface.
</Trans>
</Text>
@@ -24,7 +24,7 @@ export function LiveEventFeedsSettingsToggle() {
return (
<Toggle.Item
name="enable_live_event_banner"
label={_(msg`Enable live event banner in your Discover feed`)}
label={_(msg`Show live events in your Discover Feed`)}
value={!hideAllFeeds}
onChange={() => {
if (!isPending) {
@@ -34,7 +34,7 @@ export function LiveEventFeedsSettingsToggle() {
<SettingsList.Item>
<SettingsList.ItemIcon icon={LiveIcon} />
<SettingsList.ItemText>
<Trans>Enable live event banner</Trans>
<Trans>Show live events in your Discover Feed</Trans>
</SettingsList.ItemText>
<Toggle.Platform />
</SettingsList.Item>