fix: fetching wrong changelog file

This commit is contained in:
max_richter 2021-03-13 01:35:57 +01:00
parent 6f0395798a
commit a5bd15fe9b

View File

@ -3,7 +3,7 @@ import { commitStore, route } from "stores";
(async () => {
const commits = (await fetch("build/git.json").then(res => res.json())).map(c => {
const commits = (await fetch("build/commits.json").then(res => res.json())).map(c => {
c.date = Date.parse(c.date);
return c;
})