Skip to content

Commit 9386efa

Browse files
committed
style:prettierを適用
1 parent 22e4b0e commit 9386efa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

typing-app/src/components/molecules/UserCard.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ interface UserCardPresenterProps {
1010
export const UserCardPresenter = ({ user }: UserCardPresenterProps) => {
1111
return (
1212
<HStack spacing={4} bg="blue.600">
13-
<Avatar src={"https://www.shizuoka.ac.jp/cms/files/shizudai/MASTER/0100/uISrbYCb_VL033_r03.png"} boxSize="100px" borderRadius="0" />
13+
<Avatar
14+
src={"https://www.shizuoka.ac.jp/cms/files/shizudai/MASTER/0100/uISrbYCb_VL033_r03.png"}
15+
boxSize="100px"
16+
borderRadius="0"
17+
/>
1418
<VStack align="start" paddingRight="8px">
1519
<Text fontSize="lg" fontWeight="bold" color="white">
1620
名前: {user ? user.handleName : "ログインしていません"}

0 commit comments

Comments
 (0)