We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 265a348 + 1abacdc commit 18cd8fbCopy full SHA for 18cd8fb
.github/workflows/manual-trigger.yml
@@ -13,7 +13,7 @@ on:
13
14
jobs:
15
deploy:
16
- uses: ./.github/workflows/main.yml
+ uses: /.github/workflows/main.yml
17
with:
18
branch: ${{ github.event.inputs.branch }}
19
secrets: inherit
src/app/main/api.ts
@@ -13,5 +13,5 @@ export async function getGoalList() {
}
export async function postCreateGoal(req: CreateGoalRequest) {
- return await apiClient.post<CreateGoalRequest>('/goal', req);
+ return await apiClient.post<CreateGoalRequest>('/goals', req);
0 commit comments