Fixed url capitalization

This commit is contained in:
mrfry 2021-02-10 15:46:51 +01:00
parent 6251456781
commit e5138adf66
2 changed files with 2 additions and 2 deletions

View file

@ -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(() => {

View file

@ -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) => {