diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/components/Toast/index.web.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/Toast/index.web.tsx b/src/components/Toast/index.web.tsx index f6ceda568..f2517e28d 100644 --- a/src/components/Toast/index.web.tsx +++ b/src/components/Toast/index.web.tsx @@ -78,7 +78,12 @@ export const ToastContainer: React.FC<ToastContainerProps> = ({}) => { <Toast content={activeToast.content} type={activeToast.type} /> <Pressable style={[a.absolute, a.inset_0]} - accessibilityLabel={_(msg`Dismiss toast`)} + accessibilityLabel={_( + msg({ + message: `Dismiss message`, + comment: `Accessibility label for dismissing a toast notification`, + }), + )} accessibilityHint="" onPress={() => setActiveToast(undefined)} /> |