Skip to content

Commit 50c57e4

Browse files
committed
linter fix
1 parent 08606e9 commit 50c57e4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/internal/components/Toast.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export function Toast({
3232
const positionClass = getToastPosition(position);
3333
const animationClass = animation ?? defaultAnimationByPosition[position];
3434

35+
/* biome-ignore lint/correctness/useExhaustiveDependencies: retrigger durationMs on updates to children */
3536
useEffect(() => {
3637
const timer = setTimeout(() => {
3738
if (isVisible) {
@@ -61,7 +62,7 @@ export function Toast({
6162
'flex items-center justify-between rounded-lg',
6263
'p-2 shadow-[0px_8px_24px_0px_rgba(0,0,0,0.12)]',
6364
animationClass,
64-
className,
65+
className
6566
)}
6667
data-testid="ockToast"
6768
>

0 commit comments

Comments
 (0)