Skip to content

Commit 5c80570

Browse files
authored
Merge pull request #72 from kc3hack/hayato/develop
Hayato/develop
2 parents 80e8b5c + 4e4f71a commit 5c80570

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/app/yomu/AfterYomu.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ const AfterYomu = ({ tanka, imagePath, userName, userIconPath }: AfterYomuProps)
186186
height={40}
187187
className='rounded-full'
188188
/>
189-
<span className='ml-2 text-red-700'>{userName}</span>
189+
<span className='mx-1 text-red-700'>{userName}</span>
190190
</motion.div>
191191
)}
192192
</div>

frontend/src/app/yomu/postActions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export const postYomu = async (data: PostData): Promise<PostResult> => {
3333
original: data.originalText,
3434
user_name: data.userName,
3535
user_icon: data.userIconPath,
36+
image: data.imageData,
3637
},
3738
});
3839
} else {
@@ -41,7 +42,6 @@ export const postYomu = async (data: PostData): Promise<PostResult> => {
4142
original: data.originalText,
4243
user_name: data.userName,
4344
user_icon: data.userIconPath,
44-
image: data.imageData,
4545
},
4646
});
4747
}

0 commit comments

Comments
 (0)