Skip to content

Commit 95034e5

Browse files
committed
🐞 fix: (FE) - userDrawer에 본인이 보이지 않는 문제
1 parent 3868f18 commit 95034e5

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

frontend/src/components/@drawer/UserDrawer/UserDrawer.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ const UserDrawer = () => {
2222
return (
2323
<>
2424
<div css={userListStyle}>
25+
<div>
26+
<div>{me.nickname}</div>
27+
<div>
28+
<MicOnIcon {...iconSmStyle} />
29+
<CameraOnIcon {...iconSmStyle} />
30+
</div>
31+
</div>
2532
{others.map((other, i) => (
2633
<div key={i}>
2734
<div>{other.nickname}</div>

frontend/src/components/InterviewDocsItem/InterviewDocsItem.style.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export const docsItemWrapper = (theme, style) =>
99
margin: 20px 0px;
1010
width: 100%;
1111
gap: 40px;
12+
cursor: pointer;
1213
1314
${style === 'card' ? cardDocsStyle(theme) : listDocsStyle(theme)};
1415
div {

0 commit comments

Comments
 (0)