Skip to content

Commit

Permalink
chore: 날짜 데이터 필드 연결
Browse files Browse the repository at this point in the history
  • Loading branch information
gominzip committed Aug 27, 2024
1 parent c6eb7ed commit b45112c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/tales/readTale/ReadTale.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const ReadTale = () => {
<S.ReadTaleHead>
<S.TitleWrapper>
<S.Complete>
내가 동화를 만든 날 | {response.createdAt}
내가 동화를 만든 날 | {data.createdAt}
</S.Complete>
<S.Title>제목: {data.title}</S.Title>
</S.TitleWrapper>
Expand Down
1 change: 1 addition & 0 deletions src/type/createTale.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ export interface ResponseTaleData {
taleId: number;
title: string;
story: string;
createdAt: string;
}

0 comments on commit b45112c

Please sign in to comment.