Skip to content

Commit

Permalink
fix: Integrations list is empty when self-hosting (#5171)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg authored Feb 28, 2025
1 parent fc23544 commit 788d50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/common/services/useProject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const projectService = service
getProject: builder.query<Res['project'], Req['getProject']>({
providesTags: (res) => [{ id: res?.id, type: 'Project' }],
query: (query: Req['getProject']) => ({
url: `projects/${query.id}`,
url: `projects/${query.id}/`,
}),
}),
getProjects: builder.query<Res['projects'], Req['getProjects']>({
Expand Down

0 comments on commit 788d50b

Please sign in to comment.