A tabela de próximas partidas na data atual não mostrará nenhuma informação. Nesse caso, realizei uma alteração em api.js para que pudesse ver as informações:
ANTES:
export const getNextMatches = async id => {
const now = new Date();
const until = new Date();
until.setDate(now.getDate() + 21);
return getMatches(id, toIsoString(now), toIsoString(until));
};
DEPOIS:
export const getNextMatches = async id => {
const now = new Date(2019, 1, 1); //forcei a data que precisava
const until = new Date();
until.setDate(now.getDate() + 21);
return getMatches(id, toIsoString(now), toIsoString(until));
};
Quer ver mais contribuições, perguntas e respostas da comunidade?