Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ const DiceSetupModal: FC<DiceSetupModalProps> = (props: DiceSetupModalProps) =>
}

function verificationCallback(data: any): void {
// eslint-disable-next-line no-console
console.log('dice verificationCallback data', data)
if (data.success) {
const userEmail: string = get(data, 'user.profile.Email')
if (!isUndefined(userEmail) && lowerCase(userEmail) === lowerCase(props.profile.email)) {
Expand Down