diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx b/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx
index c1f0f87c..502bf9ad 100644
--- a/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx
+++ b/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx
@@ -1470,26 +1470,29 @@ export default function ProductAllSection({
})()} */}
- {/* Theme Item Button - 새로운 bottomButtonWrapper로 감싸기 */}
- {/* {panelInfo && panelInfo.type === 'theme' && !openThemeItemOverlay && ( */}
-
- {
- e.preventDefault();
- handleThemeItemButtonClick();
- }}
- >
- {$L('THEME ITEM')}
-
-
-
- {/* )} */}
+ {/* Theme Item Button - theme 타입이고 themeProducts 데이터가 있을 때만 표시 */}
+ {panelInfo &&
+ panelInfo.type === 'theme' &&
+ themeProducts &&
+ themeProducts.length > 0 && (
+
+ {
+ e.preventDefault();
+ handleThemeItemButtonClick();
+ }}
+ >
+ {$L('THEME ITEM')}
+
+
+
+ )}