Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Tweak accessibility label (#8767)

* tweak accessibility label

* change `alert` to `message` and add comment instead of context

* tweak comment

authored by

surfdude29 and committed by
GitHub
14e39c4a 59864174

+6 -1
+6 -1
src/components/Toast/index.web.tsx
··· 78 78 <Toast content={activeToast.content} type={activeToast.type} /> 79 79 <Pressable 80 80 style={[a.absolute, a.inset_0]} 81 - accessibilityLabel={_(msg`Dismiss toast`)} 81 + accessibilityLabel={_( 82 + msg({ 83 + message: `Dismiss message`, 84 + comment: `Accessibility label for dismissing a toast notification`, 85 + }), 86 + )} 82 87 accessibilityHint="" 83 88 onPress={() => setActiveToast(undefined)} 84 89 />