Skip to content

Commit 3fd7706

Browse files
committed
linter fix
1 parent e5bb606 commit 3fd7706

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/internal/components/Toast.tsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,13 @@ export function Toast({
4747
clearTimeout(timer);
4848
}
4949
};
50-
}, [durationMs, isVisible, onClose, children, parentComponentLifecycleStatus]);
50+
}, [
51+
durationMs,
52+
isVisible,
53+
onClose,
54+
children,
55+
parentComponentLifecycleStatus,
56+
]);
5157

5258
if (!isVisible) {
5359
return null;

0 commit comments

Comments
 (0)