Browse Source

Use success variant on sign-out.

master
Rick Watson 5 years ago
parent
commit
d1f3720cd9
  1. 4
      interface/src/authentication/AuthenticationWrapper.js

4
interface/src/authentication/AuthenticationWrapper.js

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

Loading…
Cancel
Save