From 8862d5d6efa209e27756c23c97ddc6e6764d2238 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Mon, 19 Jun 2023 18:32:56 -0700 Subject: [PATCH] Remove unused default exports --- web/components/ui/Modal/Modal.tsx | 1 - web/components/video/OwncastPlayer/OwncastPlayer.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/web/components/ui/Modal/Modal.tsx b/web/components/ui/Modal/Modal.tsx index 2b168fbb0..508753f57 100644 --- a/web/components/ui/Modal/Modal.tsx +++ b/web/components/ui/Modal/Modal.tsx @@ -97,7 +97,6 @@ export const Modal: FC = ({ ); }; -export default Modal; Modal.defaultProps = { url: undefined, diff --git a/web/components/video/OwncastPlayer/OwncastPlayer.tsx b/web/components/video/OwncastPlayer/OwncastPlayer.tsx index d0daa9520..0356fc626 100644 --- a/web/components/video/OwncastPlayer/OwncastPlayer.tsx +++ b/web/components/video/OwncastPlayer/OwncastPlayer.tsx @@ -331,4 +331,3 @@ export const OwncastPlayer: FC = ({ ); }; -export default OwncastPlayer;