Skip to content

Commit

Permalink
Refactor useServices to require a ServiceTemplate
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Feb 15, 2024
1 parent 68dcf54 commit ff77d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/hooks/useServices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const useServices = () => {

// SERVICES SERVICE METHODS
const createService = async (
serviceTemplate: ServiceTemplate,
serviceTemplate: Required<ServiceTemplate>,
): Promise<Service> => ServicesService.createService(serviceTemplate);

const deployService = async (serviceHash: ServiceHash) =>
Expand Down

0 comments on commit ff77d4e

Please sign in to comment.