diff --git a/src/components/board/Board.tsx b/src/components/board/Board.tsx
index 0f55d22..644bae0 100644
--- a/src/components/board/Board.tsx
+++ b/src/components/board/Board.tsx
@@ -36,7 +36,7 @@ const Board = ({ board }: BoardProps) => {
return (
handleBoardClick(id)}
>
diff --git a/src/components/board/BoardPage.tsx b/src/components/board/BoardPage.tsx
index 2c5e921..1dfe7b8 100644
--- a/src/components/board/BoardPage.tsx
+++ b/src/components/board/BoardPage.tsx
@@ -51,12 +51,12 @@ const BoardPage = () => {
onClick={() => {}}
/>
-
+
{boardList &&
boardList.result.map((board: BoardI) => (
))}
diff --git a/src/components/worry/WorryBoard.tsx b/src/components/worry/WorryBoard.tsx
index 945af53..46468d4 100644
--- a/src/components/worry/WorryBoard.tsx
+++ b/src/components/worry/WorryBoard.tsx
@@ -24,7 +24,7 @@ const WorryBoard = ({ worryBoard }: WorryBoardProps) => {
return (
{
router.push(`/worry/${id}`)
}}
diff --git a/src/components/worry/WorryPage.tsx b/src/components/worry/WorryPage.tsx
index 96e29e6..7b666d0 100644
--- a/src/components/worry/WorryPage.tsx
+++ b/src/components/worry/WorryPage.tsx
@@ -80,12 +80,12 @@ const WorryPage = () => {
setStrFromMbti={setWaitingStrFromMbti}
setStrToMbti={setWaitingStrToMbti}
/>
-
+
{waitingWorryList &&
waitingWorryList.result.map((worry: WorryI) => (
))}
@@ -110,12 +110,12 @@ const WorryPage = () => {
setStrFromMbti={setSolvedStrFromMbti}
setStrToMbti={setSolvedStrToMbti}
/>
-
+
{solvedWorryList &&
solvedWorryList.result.map((worry: WorryI) => (
))}