Skip to content

Commit

Permalink
fix: Add trailing / to delete api key endpoint (#3506)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg authored Feb 28, 2024
1 parent 3f83130 commit 0d655a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/common/services/useServersideEnvironmentKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const serversideEnvironmentKeyService = service
query: (query: Req['deleteServersideEnvironmentKeys']) => ({
body: query,
method: 'DELETE',
url: `environments/${query.environmentId}/api-keys/${query.id}`,
url: `environments/${query.environmentId}/api-keys/${query.id}/`,
}),
}),
getServersideEnvironmentKeys: builder.query<
Expand Down

0 comments on commit 0d655a0

Please sign in to comment.