diff --git a/src/components/Announcement/Popups/CenterPopup.tsx b/src/components/Announcement/Popups/CenterPopup.tsx
index a88ef56e40..8e27a33378 100644
--- a/src/components/Announcement/Popups/CenterPopup.tsx
+++ b/src/components/Announcement/Popups/CenterPopup.tsx
@@ -113,19 +113,28 @@ const VideoWrapper = styled.div`
height: ${VIDEO_SIZE};
`
-const Video = ({ url, title }: { url: string; title: string }) => (
-
-
-
-)
+const whitelistDomains = ['drive.google.com', 'www.youtube.com']
+const Video = ({ url, title }: { url: string; title: string }) => {
+ try {
+ const { host } = new URL(url)
+ if (!whitelistDomains.includes(host)) return null
+ } catch (error) {
+ return null
+ }
+ return (
+
+
+
+ )
+}
export default function CenterPopup({
onDismiss,