Skip to content

Commit a7a5fda

Browse files
yann300ci-bot
authored andcommitted
fix test
1 parent a9f80c5 commit a7a5fda

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libs/remix-ui/toaster/src/lib/toaster.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const ToastTrigger = (props: ToasterProps) => {
3737
if (typeof props.message === 'string') {
3838
const toastId = toast.custom(
3939
() => (
40-
<div className="toast show" role="alert" aria-live="assertive" aria-atomic="true">
40+
<div data-shared="tooltipPopup" className="toast show" role="alert" aria-live="assertive" aria-atomic="true">
4141
<div className="toast-header">
4242
{showLoadingIcon && (
4343
<span className="spinner-border spinner-border-sm me-2" role="status">
@@ -75,7 +75,7 @@ export const ToastTrigger = (props: ToasterProps) => {
7575
// For JSX elements, use toast.custom
7676
const toastId = toast.custom(
7777
() => (
78-
<div className="toast show" role="alert" aria-live="assertive" aria-atomic="true">
78+
<div data-shared="tooltipPopup" className="toast show" role="alert" aria-live="assertive" aria-atomic="true">
7979
<div className="toast-header">
8080
{showLoadingIcon && (
8181
<span className="spinner-border spinner-border-sm me-2" role="status">
@@ -158,7 +158,7 @@ export const Toaster = (props: ToasterProps) => {
158158

159159
toastId = toast.custom(
160160
() => (
161-
<div className="toast show" role="alert" aria-live="assertive" aria-atomic="true">
161+
<div data-shared="tooltipPopup" className="toast show" role="alert" aria-live="assertive" aria-atomic="true">
162162
<div className="toast-header">
163163
{showLoadingIcon && (
164164
<span className="spinner-border spinner-border-sm me-2" role="status">
@@ -192,7 +192,7 @@ export const Toaster = (props: ToasterProps) => {
192192
// For JSX elements, use toast.custom
193193
toastId = toast.custom(
194194
() => (
195-
<div className="toast show" role="alert" aria-live="assertive" aria-atomic="true">
195+
<div data-shared="tooltipPopup" className="toast show" role="alert" aria-live="assertive" aria-atomic="true">
196196
<div className="toast-header">
197197
{showLoadingIcon && (
198198
<span className="spinner-border spinner-border-sm me-2" role="status">

0 commit comments

Comments
 (0)