mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Fixed url capitalization
This commit is contained in:
parent
6251456781
commit
e5138adf66
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ export default function BB() {
|
||||||
const [shouldRender, setShouldRender] = useState(false)
|
const [shouldRender, setShouldRender] = useState(false)
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setShouldRender(GetRandom(0, 100) === 4)
|
setShouldRender(GetRandom(0, 200) === 4)
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
|
@ -10,7 +10,7 @@ export default function DbSelector({ onDbSelect, closeClick, text, showAll }) {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
console.info('Fetching dbs')
|
console.info('Fetching dbs')
|
||||||
fetch(`${constants.apiUrl}getdbs`, {
|
fetch(`${constants.apiUrl}getDbs`, {
|
||||||
credentials: 'include',
|
credentials: 'include',
|
||||||
})
|
})
|
||||||
.then((resp) => {
|
.then((resp) => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue