@omniumretail/shared-resources 0.0.99 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@ export interface UpdateSupervisorMutateQuery extends UseQueryOptions<EvaluationC
|
|
|
11
11
|
export const useUpdateSupervisorMutateQueryHook = ({ evaluationCycleId, userId, supervisorId }: UpdateSupervisorMutateQuery) => {
|
|
12
12
|
const queryClient = useQueryClient();
|
|
13
13
|
return useMutation<EvaluationCycle, unknown, EvaluationCycle>((data: EvaluationCycle) => {
|
|
14
|
-
return putAuth0(`/APE/EvaluationCycle/UpdateSupervisor
|
|
14
|
+
return putAuth0(`/APE/EvaluationCycle/UpdateSupervisor?`, {
|
|
15
15
|
pEvaluationCycleId: evaluationCycleId,
|
|
16
16
|
pUserId: userId,
|
|
17
17
|
pSupervisor: supervisorId
|