Merge pull request 'upadated application cache key in createrole' (#26) from pramod_bug#91 into Feature_Task_Management

Reviewed-on: #26
This commit is contained in:
pramod.mahajan 2025-04-18 07:55:17 +00:00
commit c5bfacda3b

View File

@ -58,17 +58,17 @@ const onSubmit = (values) => {
MasterRespository.createRole(result).then((resp)=>{
setIsLoading(false)
const cachedData = getCachedData( "Role" );
const cachedData = getCachedData( "Application Role" );
const updatedData = [...cachedData, resp.data];
cacheData("Application Role", updatedData);
showToast("Application Role Added successfully.", "success");
showToast( "Application Role Added successfully.", "success" );
onClose()
} ).catch( ( err ) =>
{
showToast(err?.response?.data?.message, "error");
setIsLoading(false)
setIsLoading( false )
onClose()
})