Skip to content

Commit

Permalink
[feat] 타입 에러가 발생하네
Browse files Browse the repository at this point in the history
  • Loading branch information
zestlee1106 committed Oct 11, 2023
1 parent 04c7dec commit e5c03ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/room/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ const Page = () => {
</div>
</div>
<hr />
{room.furnishingsData?.length > 0 && (
{room.furnishingsData && room.furnishingsData?.length > 0 && (
<div className="py-[20px]">
<p className="text-g7 font-semibold text-[18px]">Furnishing</p>
<div className="flex pt-[8px] gap-[4px] whitespace-nowrap overflow-x-auto">
Expand Down

0 comments on commit e5c03ef

Please sign in to comment.