Skip to content

Commit 18cd8fb

Browse files
authored
Merge pull request #34 from DDD-Community/hotfix/goal-url
Hotfix/goal url
2 parents 265a348 + 1abacdc commit 18cd8fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/manual-trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
deploy:
16-
uses: ./.github/workflows/main.yml
16+
uses: /.github/workflows/main.yml
1717
with:
1818
branch: ${{ github.event.inputs.branch }}
1919
secrets: inherit

src/app/main/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ export async function getGoalList() {
1313
}
1414

1515
export async function postCreateGoal(req: CreateGoalRequest) {
16-
return await apiClient.post<CreateGoalRequest>('/goal', req);
16+
return await apiClient.post<CreateGoalRequest>('/goals', req);
1717
}

0 commit comments

Comments
 (0)