Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Commit d385e94

Browse files
committed
Add missing trailing slash on integrations list causing cors issues
1 parent ca162bb commit d385e94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/store/integrations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const api = createApi({
2222
endpoints: (builder) => ({
2323
// Webhook endpoints
2424
listWebhooks: builder.query<ReducedWebhook[], void>({
25-
query: () => '/integrations/webhooks',
25+
query: () => '/integrations/webhooks/',
2626
providesTags: (result: ReducedWebhook[] = []) => [
2727
Tag.Webhook,
2828
...result.map((w) => ({ type: Tag.Webhook, id: w.id })),

0 commit comments

Comments
 (0)