Skip to content

Commit

Permalink
Support User: LinkedStateMixin is now an external lib (#1901)
Browse files Browse the repository at this point in the history
  • Loading branch information
jordwest committed Jan 5, 2016
1 parent 3b21647 commit ece3fdb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/components/support-user/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*/
import React from 'react';
import classNames from 'classnames';
import LinkedStateMixin from 'react-addons-linked-state-mixin';

/**
* Internal dependencies
Expand All @@ -22,7 +23,7 @@ import Gravatar from 'components/gravatar';
module.exports = React.createClass( {
displayName: 'SupportUser',

mixins: [ observe( 'userSettings' ), React.addons.LinkedStateMixin ],
mixins: [ observe( 'userSettings' ), LinkedStateMixin ],

componentDidMount: function() {
KeyboardShortcuts.on( 'open-support-user', this.toggleShowDialog );
Expand Down

0 comments on commit ece3fdb

Please sign in to comment.