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)
useEffect(() => {
setShouldRender(GetRandom(0, 100) === 4)
setShouldRender(GetRandom(0, 200) === 4)
}, [])
useEffect(() => {

View file

@ -10,7 +10,7 @@ export default function DbSelector({ onDbSelect, closeClick, text, showAll }) {
useEffect(() => {
console.info('Fetching dbs')
fetch(`${constants.apiUrl}getdbs`, {
fetch(`${constants.apiUrl}getDbs`, {
credentials: 'include',
})
.then((resp) => {