diff --git a/components/mention/demo/custom-tag.md b/components/mention/demo/custom-tag.md index 83ec1e6b41..fc04ed79d7 100644 --- a/components/mention/demo/custom-tag.md +++ b/components/mention/demo/custom-tag.md @@ -29,7 +29,6 @@ const CustomNavMention = React.createClass({ getInitialState() { return { suggestions: [], - loading: false, }; }, onSearchChange(value) { @@ -44,11 +43,10 @@ const CustomNavMention = React.createClass({ this.setState({ suggestions }); }, render() { - const { suggestions, loading } = this.state; + const { suggestions } = this.state; return (