Use success variant on sign-out.

This commit is contained in:
Rick Watson 2019-08-07 21:14:21 +01:00
parent 5161d4bc3c
commit d1f3720cd9

View File

@ -111,7 +111,9 @@ class AuthenticationWrapper extends React.Component {
user: undefined user: undefined
} }
}); });
this.props.enqueueSnackbar("You have signed out."); this.props.enqueueSnackbar("You have signed out.", {
variant: 'success',
});
history.push('/'); history.push('/');
} }