Skip to content

Commit

Permalink
Tidy up following animations spiking
Browse files Browse the repository at this point in the history
  • Loading branch information
rkclark committed Jun 18, 2018
1 parent 97eee98 commit 3a1c6c4
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 32 deletions.
15 changes: 0 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"react-flip-move": "^3.0.2",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-transition-group": "^2.3.1",
"redux": "^3.7.0",
"redux-devtools-extension": "^2.13.2",
"redux-persist": "^4.9.1",
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Home/components/Repo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import CircularCounter from '../../../../components/CircularCounter';
import { REPO_SUMMARY_MAX_PRS, MAXIMUM_PRS } from '../../../../constants';
import userIcon from '../../../../images/anon-user.svg';

/* This must be a class-based component for React Flip animations to work */
/* This must be a class-based component for React Flip Move animations to work */
export default class Repo extends React.Component {
constructor(props) {
super();
Expand Down
14 changes: 0 additions & 14 deletions src/routes/Home/components/Repo/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,6 @@
background-color: white;
overflow: hidden;
box-shadow: 0 0.1rem 0.4rem 0 rgba(0, 0, 0, 0.4), inset 0 -0.4rem 0 0 var(--primary-medium);
margin: 1rem;
}

.repoEntering {
opacity: 0;
}

.repoEntered {
opacity: 1;
}

.repoExiting {
opacity: 0;
}

.indicatorsContainer {
Expand All @@ -33,7 +20,6 @@
box-shadow: inset 0 -0.4rem 0 0 var(--secondary-medium);
}


.countContainer, .reviewsContainer {
flex: 0 1 50%;
display: flex;
Expand Down
1 change: 0 additions & 1 deletion stubServer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ app.post('/graphql', async (req, res) => {
}
case pullRequestsQuery: {
console.log('Stub server returning pull requests response');
console.log('PR RESP INDEX', prResponseCount);
const pullRequestsResponse = stringify(
getPullRequestsResponse(prResponseCount),
);
Expand Down

0 comments on commit 3a1c6c4

Please sign in to comment.