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) { if (undoAction) {
control.close() control.close()
} }
@@ -107,7 +111,7 @@ function Inner({
<Trans> <Trans>
Live events appear occasionally when something exciting is Live events appear occasionally when something exciting is
happening. If you'd like, you can hide this particular event, or all happening. If you'd like, you can hide this particular event, or all
events. events for this placement in your app interface.
</Trans> </Trans>
</Text> </Text>
@@ -24,7 +24,7 @@ export function LiveEventFeedsSettingsToggle() {
return ( return (
<Toggle.Item <Toggle.Item
name="enable_live_event_banner" 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} value={!hideAllFeeds}
onChange={() => { onChange={() => {
if (!isPending) { if (!isPending) {
@@ -34,7 +34,7 @@ export function LiveEventFeedsSettingsToggle() {
<SettingsList.Item> <SettingsList.Item>
<SettingsList.ItemIcon icon={LiveIcon} /> <SettingsList.ItemIcon icon={LiveIcon} />
<SettingsList.ItemText> <SettingsList.ItemText>
<Trans>Enable live event banner</Trans> <Trans>Show live events in your Discover Feed</Trans>
</SettingsList.ItemText> </SettingsList.ItemText>
<Toggle.Platform /> <Toggle.Platform />
</SettingsList.Item> </SettingsList.Item>