(type, msg)
| 59 | }, []); |
| 60 | |
| 61 | const showAlert = (type, msg) => { |
| 62 | dispatch(setAlertInfo({ type, msg })); |
| 63 | setTimeout(() => { |
| 64 | dispatch(setAlertInfo({ type: "success", msg: "" })); |
| 65 | }, 2000); |
| 66 | }; |
| 67 | |
| 68 | const fetchSignType = withSessionValidation(async () => { |
| 69 | dispatch(setTopLoader(true)); |