remove usage of old reaction endpoint
const response = await axiosInstance.get<Reaction[]>(
apiPath.getReactionById(elementId, modelId),
);
replace it with new api
const response = await axiosInstance.get<Reaction[]>(
apiPath.getReactionById(elementId, modelId),
);
replace it with new api