Set fingerprint locally to avoid webgl rerenders + mem leaks BOD-132

This commit is contained in:
Patrick Fic
2020-05-22 08:45:09 -07:00
parent f631b91b18
commit 19eceae2b9
4 changed files with 14 additions and 12 deletions

View File

@@ -67,3 +67,8 @@ export const checkInstanceId = (uid) => ({
export const setInstanceConflict = () => ({
type: UserActionTypes.SET_INSTANCE_CONFLICT,
});
export const setLocalFingerprint = (fingerprint) => ({
type: UserActionTypes.SET_LOCAL_FINGERPRINT,
payload: fingerprint,
});