Skip to content

Commit

Permalink
Eslintのエラーを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoya0819 committed Aug 29, 2024
1 parent ecb90e8 commit c5d5089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Index: NextPage = () => {
fetch('https://jsonplaceholder.typicode.com/photos')
.then((response) => {
if (!response.ok) {
return;
return
}
return response.json()
})
Expand Down

0 comments on commit c5d5089

Please sign in to comment.