mock
Mon Sep 14 2026 21:49:44 GMT+0000 (Coordinated Universal Time)
Saved by
@EdenPark
return (dispatch: Dispatch) => {
dispatch({ type: EXPORT_SIMS_REQUEST });
setTimeout(() => {
const result: MultiStatusResult = {
succeeded: ids,
failed: ['123123', '4565', '4565', '4565', '4565', '4565', '4565', '4565', '4565'],
allSucceeded: false,
message: null,
};
const result2: ProblemDetails = {
detail: 'Test',
status: 400,
title: 'Something went wrong',
};
// dispatch({ type: EXPORT_SIMS_RECEIVE, payload: result });
dispatch({ type: EXPORT_SIMS_ERROR, payload: result2 });
}, 2000);
};
content_copyCOPY
Comments