Remove debug print-out of the countdown.

master
Icedream 2017-08-19 23:51:36 +02:00
parent ca510692bb
commit aa6b84c00b
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
1 changed files with 0 additions and 2 deletions

View File

@ -55,8 +55,6 @@ export default class Countdown extends React.Component {
const hours = (milliseconds / (60 * 60 * 1000)) % 24;
const days = (milliseconds / (24 * 60 * 60 * 1000));
console.log({ days, hours, minutes, seconds });
const size = 160; // @HACK
const { locale, minimumIntegerDigits, useGrouping } = this.props;