build fix

This commit is contained in:
mrfry 2023-03-28 19:50:41 +02:00
parent 32522097c0
commit d2524e5903
5 changed files with 56 additions and 6 deletions

View file

@ -11,7 +11,7 @@ class MyDocument extends Document {
return (
<Html>
<Head />
<body bgcolor="#222226">
<body style={{ backgroundColor: '#222226' }}>
<Main />
<NextScript />
</body>

View file

@ -36,7 +36,7 @@ function fetchData(db) {
credentials: 'include',
})
.then((resp) => {
return respon()
return resp.json()
})
.then((resp) => {
resolve({
@ -61,7 +61,7 @@ function fetchDbs() {
credentials: 'include',
})
.then((resp) => {
return respon()
return resp.json()
})
.then((data) => {
resolve(data)