Skip to content

Commit

Permalink
Refactor createService function signature
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Feb 15, 2024
1 parent ff77d4e commit ef8d69b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/service/Services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const deleteServices = async (
* Creates a service
*/
const createService = async (
serviceTemplate: ServiceTemplate,
serviceTemplate: Required<ServiceTemplate>,
): Promise<Service> =>
fetch(`${BACKEND_URL}/services`, {
method: "POST",
Expand Down

0 comments on commit ef8d69b

Please sign in to comment.