Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
methusael13 committed Feb 2, 2018
1 parent 7fe0855 commit e06ac54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/AuthCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,10 @@ class AuthCard extends Component {

render() {
// Test for validation errors
const { errors, hidden, animEntry } = this.state;
const { errors, animEntry } = this.state;

// Card component
const cardComponent = ((interpolatedStyle) => {
const cardComponent = (interpolatedStyle) => {
return (
<div className="auth-card auth-card-position"
style={{ opacity: interpolatedStyle.opacity, top: interpolatedStyle.top + "%" }}>
Expand Down Expand Up @@ -238,7 +238,7 @@ class AuthCard extends Component {
</div>
</div>
);
}).bind(this);
};

// Define entry and exit interpolation values
const cAnim = this.animProps.card[animEntry ? 'entry' : 'exit'];
Expand Down

0 comments on commit e06ac54

Please sign in to comment.