Skip to content

Commit 64976c7

Browse files
committed
ui 수정
1 parent c7d381d commit 64976c7

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/components/ide/IDE.jsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,8 @@ const IDE = () => {
929929
{sidebarSections.myFiles ? '▼' : '▶'}
930930
</span>
931931
<i data-feather="folder" className="section-icon"></i>
932-
<span className="section-title">내 파일 ({myServerFiles.length + myLocalFiles.length}개)</span>
932+
{/* 💡 파일 개수 표시 제거 */}
933+
<span className="section-title">내 파일</span>
933934
</button>
934935

935936
{sidebarSections.myFiles && (
@@ -943,7 +944,7 @@ const IDE = () => {
943944
>
944945
{getFileIcon(file.name)}
945946
<span className="file-name">{file.name}</span>
946-
{/* ⛔ 뱃지 제거 */}
947+
{/* ⛔ 뱃지 제거됨 */}
947948

948949
{/* 🔑 파일 삭제 버튼 추가 */}
949950
<button
@@ -968,7 +969,7 @@ const IDE = () => {
968969
>
969970
{getFileIcon(file.name)}
970971
<span className="file-name">{file.name}</span>
971-
{/* ⛔ 뱃지 제거 */}
972+
{/* ⛔ 뱃지 제거됨 */}
972973
</div>
973974
))}
974975
</div>

0 commit comments

Comments
 (0)