(type, msg)
| 68 | }; |
| 69 | |
| 70 | const showToast = (type, msg) => { |
| 71 | setState({ ...state, loading: false, alertType: type, alertMsg: msg }); |
| 72 | setTimeout(() => setState({ ...state, alertMsg: "" }), 2000); |
| 73 | }; |
| 74 | |
| 75 | const checkUserExt = async () => { |
| 76 | const app = await getAppLogo(); |
no outgoing calls
no test coverage detected