Skip to content

Commit

Permalink
fix(api): update route for sharing speakers list
Browse files Browse the repository at this point in the history
  • Loading branch information
rhahao authored Oct 22, 2023
1 parent 5cb6f1d commit a2df568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/congregation.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ export const apiUploadVisitingSpeakers = async (speakers) => {
const auth = await getAuth();
const user = auth.currentUser;

const res = await fetch(`${apiHost}api/congregations/secretary/${congID}/visiting-speakers`, {
const res = await fetch(`${apiHost}api/congregations/meeting/${congID}/visiting-speakers`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down

0 comments on commit a2df568

Please sign in to comment.