(displayName, avatarId)
| 32 | import {getRecordByApplicant, updateCachedRecords} from "./RecordData"; |
| 33 | |
| 34 | const avatarCacheKey = (displayName, avatarId) => `${displayName}-avatar-${avatarId}`; |
| 35 | const metadataCacheKey = (displayName) => `${displayName}-metadata`; |
| 36 | const USER_CHANGED_EVENT = "opensist-user-changed"; |
| 37 |
no outgoing calls
no test coverage detected