(cursor)
| 1083 | } |
| 1084 | |
| 1085 | async function setLuckmailMailCursorState(cursor) { |
| 1086 | const normalizedCursor = cursor ? normalizeLuckmailMailCursor(cursor) : null; |
| 1087 | await setState({ currentLuckmailMailCursor: normalizedCursor }); |
| 1088 | return normalizedCursor; |
| 1089 | } |
| 1090 | |
| 1091 | async function clearLuckmailRuntimeState(options = {}) { |
| 1092 | const { clearEmail = false } = options; |
no test coverage detected