Skip to content

Commit

Permalink
πŸ“ style: postLetter API λ§€κ°œλ³€μˆ˜λͺ… λ³€κ²½
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhyun00 committed Feb 6, 2024
1 parent f58f01f commit 343678c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/letter/apis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import baseInstance from '../instance';

const letterAPI = {
/** νŽΈμ§€ μž‘μ„± */
postLetter: async (params: Letter) => {
const { data } = await baseInstance.post('/api/letter', params);
postLetter: async (letter: Letter) => {
const { data } = await baseInstance.post('/api/letter', letter);
return data;
},
};
Expand Down

0 comments on commit 343678c

Please sign in to comment.