Skip to content

Commit c52f8a9

Browse files
committed
Deleted extra semicolon
1 parent 937eae6 commit c52f8a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/utils/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function handleError (error) {
2929
}
3030
export async function makeApiRequest (url, method, data = null) {
3131
try {
32-
const fullUrl = `${process.env.REACT_APP_API_PROTOCOL}://${process.env.REACT_APP_API_URL}/${url}`;
32+
const fullUrl = `${process.env.REACT_APP_API_PROTOCOL}://${process.env.REACT_APP_API_URL}/${url}`
3333
const res = await axios[method](fullUrl, data)
3434
return res.data
3535
} catch (error) {

0 commit comments

Comments
 (0)