Skip to content

Commit 8328673

Browse files
committed
FIX: 작품 관리 페이지 버튼 responsive 문제 해결
모바일 화면에서만 나와야 하는 버튼이 나와있던 문제 해결
1 parent af7c891 commit 8328673

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/myPage/ScriptContent.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const ScriptContent = ({
105105
/>
106106
)}
107107
{/* (모바일 화면) 작품 관리 페이지 상단 버튼: 심사 끝났을 경우 표시 */}
108-
{currentPage === "1" && script.checked === "PASS" ? (
108+
{widthConditions.isMobile && currentPage === "1" && script.checked === "PASS" ? (
109109
<ScriptManageTopBtn className="mobile" script={script} />
110110
) : null}
111111
</div>

0 commit comments

Comments
 (0)