Skip to content

Commit

Permalink
chore: async 오탈자 수정
Browse files Browse the repository at this point in the history
Co-Authored-By: 이선근 <[email protected]>
  • Loading branch information
salmontaker and 5unk3n committed Aug 24, 2023
1 parent b6c5edb commit 74e392e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apis/todo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ export const updateTodoRequest = async (
return data
}

export const deleteTodoRequest = (id: number) => {
export const deleteTodoRequest = async (id: number) => {
return AuthInstance.delete(`/todos/${id}`)
}

0 comments on commit 74e392e

Please sign in to comment.