Skip to content

Commit d928e17

Browse files
committed
style: Prettier 오류 수정
1 parent 15a133c commit d928e17

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/pages/chat/ui/ChatThreadList.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const ChatThreadList = ({ threads, selectedThreadId, unreadByThread, onSe
1313
return (
1414
<aside className="flex w-full flex-col gap-4 lg:gap-6 xl:h-[932px] xl:w-[510px] xl:max-w-[510px] xl:shrink-0 xl:px-[10px]">
1515
<h1 className="typo-title-2 text-gray-900">대화목록</h1>
16-
<div className="flex min-h-0 flex-1 flex-col gap-xs overflow-y-auto pr-2">
16+
<div className="gap-xs flex min-h-0 flex-1 flex-col overflow-y-auto pr-2">
1717
{threads.map((thread) => {
1818
const isActive = thread.id === selectedThreadId;
1919
const isUnread = unreadByThread[thread.id] ?? false;
@@ -23,13 +23,13 @@ export const ChatThreadList = ({ threads, selectedThreadId, unreadByThread, onSe
2323
type="button"
2424
onClick={() => onSelect(thread.id)}
2525
className={cn(
26-
'flex h-[130px] w-full items-center gap-xxs rounded-[16px] px-[16px] py-[16px] text-left transition-colors',
26+
'gap-xxs flex h-[130px] w-full items-center rounded-[16px] px-[16px] py-[16px] text-left transition-colors',
2727
isActive ? 'bg-gray-50' : 'hover:bg-gray-50'
2828
)}
2929
aria-pressed={isActive}
3030
>
3131
<Profile size="chat" image={thread.avatar} alt={`${thread.name} 프로필`} />
32-
<div className="flex flex-1 flex-col gap-xxxs">
32+
<div className="gap-xxxs flex flex-1 flex-col">
3333
<span className={cn('typo-title-3 text-gray-900', isUnread && 'font-bold text-black')}>
3434
{thread.name}
3535
</span>

0 commit comments

Comments
 (0)