diff --git a/frontend/src/components/landing/member/UserBlock.tsx b/frontend/src/components/landing/member/UserBlock.tsx index d9866c8..c3a4323 100644 --- a/frontend/src/components/landing/member/UserBlock.tsx +++ b/frontend/src/components/landing/member/UserBlock.tsx @@ -7,11 +7,7 @@ interface UserBlockProps { status: "on" | "off" | "away"; } -const UserStateDisplay = ({ - status = "off", -}: { - status: "on" | "off" | "away"; -}) => { +const UserStateDisplay = ({ status }: { status: "on" | "off" | "away" }) => { const { bgColor, text } = USER_STATE_DISPLAY[status]; return (