Skip to content

Commit d1f3720

Browse files
committed
Use success variant on sign-out.
1 parent 5161d4b commit d1f3720

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

interface/src/authentication/AuthenticationWrapper.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ class AuthenticationWrapper extends React.Component {
111111
user: undefined
112112
}
113113
});
114-
this.props.enqueueSnackbar("You have signed out.");
114+
this.props.enqueueSnackbar("You have signed out.", {
115+
variant: 'success',
116+
});
115117
history.push('/');
116118
}
117119

0 commit comments

Comments
 (0)