Skip to content

Commit

Permalink
Me: Use div instead of card for profile-links-add-other
Browse files Browse the repository at this point in the history
  • Loading branch information
ebinnion committed Dec 3, 2015
1 parent 533f1a2 commit d65f27a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions client/me/profile-links-add-other/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ var FormFieldset = require( 'components/forms/form-fieldset' ),
FormTextInput = require( 'components/forms/form-text-input' ),
FormButton = require( 'components/forms/form-button' ),
eventRecorder = require( 'me/event-recorder' ),
Notice = require( 'components/notice' ),
Card = require( 'components/card' );
Notice = require( 'components/notice' );

module.exports = React.createClass( {

Expand Down Expand Up @@ -127,7 +126,7 @@ module.exports = React.createClass( {

render: function() {
return (
<Card>
<div>
<form className="profile-links-add-other" onSubmit={ this.onSubmit }>
<p>
{ this.translate( 'Please enter the URL and description of the site you want to add to your profile.' ) }
Expand Down Expand Up @@ -162,7 +161,7 @@ module.exports = React.createClass( {
</FormButton>
</FormFieldset>
</form>
</Card>
</div>
);
}
} );

0 comments on commit d65f27a

Please sign in to comment.