|
@@ -1,11 +1,8 @@
|
|
|
import axiosInstance from '../interceptor';
|
|
|
|
|
|
export const changeBodyPosition = async (instanceUid: string) => {
|
|
|
- const response = await axiosInstance.post(
|
|
|
- `/api/v1/auth/task/inspection/start`,
|
|
|
- {
|
|
|
- instance_uid: instanceUid,
|
|
|
- }
|
|
|
- );
|
|
|
+ const response = await axiosInstance.post(`auth/task/inspection/start`, {
|
|
|
+ instance_uid: instanceUid,
|
|
|
+ });
|
|
|
return response.data;
|
|
|
};
|