Skip to content

Commit

Permalink
fix: MissingFallback 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeml06 committed Oct 23, 2024
1 parent e994484 commit ce71ea7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ export const container = ({
`;

export const image = css`
width: 100%;
max-width: 40rem;
height: 100%;
max-height: 40rem;
`;
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ export default function BetList() {
return bets && bets.length > 0 ? (
<BetCardList bets={bets} />
) : (
<MissingFallback text="아무런 글이 없어요..!" />
<MissingFallback text="아직 만들어진 룰렛이 없어요" />
);
}
2 changes: 1 addition & 1 deletion frontend/src/pages/Chatting/ChatPage/ChatPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default function ChatPage() {
/>
))
) : (
<MissingFallback text="아직 열린 채팅방이 없습니다" />
<MissingFallback text="아직 만들어진 채팅방이 없어요" />
)}
</ChattingPreviewLayout.ContentContainer>
</ChattingPreviewLayout>
Expand Down

0 comments on commit ce71ea7

Please sign in to comment.