()
| 32 | } |
| 33 | |
| 34 | async function getProjectBranches() { |
| 35 | const res = await axios.get(`${baseUrl}/projects/${projectId}/branches`, { headers }); |
| 36 | return res.data.data; |
| 37 | } |
| 38 | |
| 39 | async function chooseBranch() { |
| 40 | const branches = await getProjectBranches(); |