Skip to content

Commit

Permalink
Fix extra slash in url
Browse files Browse the repository at this point in the history
  • Loading branch information
MelissaAutumn committed Oct 22, 2024
1 parent 8cdbfb9 commit cc58fbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/FTUE/CalDavProvider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const onSubmit = async () => {
password: principal.value.password,
};
const { error, data }: CalendarListResponse = await call('/caldav/auth').post(requestData).json();
const { error, data }: CalendarListResponse = await call('caldav/auth').post(requestData).json();
isLoading.value = false;
Expand Down

0 comments on commit cc58fbc

Please sign in to comment.