mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
build fix
This commit is contained in:
parent
32522097c0
commit
d2524e5903
5 changed files with 56 additions and 6 deletions
|
@ -11,7 +11,7 @@ class MyDocument extends Document {
|
|||
return (
|
||||
<Html>
|
||||
<Head />
|
||||
<body bgcolor="#222226">
|
||||
<body style={{ backgroundColor: '#222226' }}>
|
||||
<Main />
|
||||
<NextScript />
|
||||
</body>
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue