Skip to content

Commit

Permalink
fix: style read null error
Browse files Browse the repository at this point in the history
  • Loading branch information
kcwww committed Dec 13, 2023
1 parent c5bc5e5 commit d9d1375
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion front/src/pages/Visit/VisitBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ const VisitBody = () => {
to={userData.nickname}
isDeco={false}
/>
) : userData.snowball_list.length > 1 ? (
) : null }
{ userData.snowball_list.length > 1 ? (
<>
<LeftBtn
src={'/icons/prev.svg'}
Expand Down

0 comments on commit d9d1375

Please sign in to comment.