Update Web deps (#10544)

* Bump react-icons from 4.12.0 to 5.0.1 in /web

Bumps [react-icons](https://github.com/react-icons/react-icons) from 4.12.0 to 5.0.1.
- [Release notes](https://github.com/react-icons/react-icons/releases)
- [Commits](https://github.com/react-icons/react-icons/compare/v4.12.0...v5.0.1)

---
updated-dependencies:
- dependency-name: react-icons
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update jsdom

* Update drawer component

* Bump eslint

* Update more deps

* Fix lint

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
Nicolas Mowen
2024-03-19 21:06:00 -06:00
committed by GitHub
parent 8589ef50a6
commit 741f0a5115
4 changed files with 99 additions and 185 deletions

View File

@@ -255,7 +255,7 @@ function VideoControls({
}, []);
const onReplay = useCallback(
(e: React.MouseEvent<HTMLDivElement>) => {
(e: React.MouseEvent<SVGElement>) => {
e.stopPropagation();
const currentTime = video?.currentTime;
@@ -270,7 +270,7 @@ function VideoControls({
);
const onSkip = useCallback(
(e: React.MouseEvent<HTMLDivElement>) => {
(e: React.MouseEvent<SVGElement>) => {
e.stopPropagation();
const currentTime = video?.currentTime;