diff --git a/apps/web/src/components/live/SettingDialog/SelectMedia.tsx b/apps/web/src/components/live/SettingDialog/SelectMedia.tsx
index 6eb0c95f..010d30aa 100644
--- a/apps/web/src/components/live/SettingDialog/SelectMedia.tsx
+++ b/apps/web/src/components/live/SettingDialog/SelectMedia.tsx
@@ -32,34 +32,48 @@ function SelectMedia() {
카메라
-
-
+
+ {videoDevices.length === 0 && (
+
사용 가능한 카메라가 없습니다.
+ )}
+ {videoDevices.length !== 0 && (
+
+ )}
마이크
-
+ {audioDevices.length === 0 && (
+
사용 가능한 마이크가 없습니다.
+ )}
+ {audioDevices.length !== 0 && (
+
+ )}
);