Last active
December 16, 2017 10:14
-
-
Save nicgirault/82b7e44fd0aa0cfebca900fce1801d68 to your computer and use it in GitHub Desktop.
fullstory-2.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const setFullStoryIdentity = (user) => { | |
if (!window.FS) return | |
window.FS.identify(user.id, { | |
displayName: `${user.firstName} ${user.lastName}`, | |
email: user.email | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment