We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ce0d44 commit a829a51Copy full SHA for a829a51
src/client/hooks/useUpdateUrlLang.tsx
@@ -37,7 +37,6 @@ export const useUpdateUrlLang = () => {
37
// sets the local lang state to match the newlang if the newLang is supported
38
const setLang = (newLang: string) => {
39
if (!languages.includes(newLang)) {
40
- console.log('aborted lang update')
41
return
42
}
43
setStorageLang(newLang)
src/client/util/apiClient.ts
@@ -4,7 +4,7 @@ import { PUBLIC_URL } from '../../config'
4
export type ApiError = AxiosError<{ message: string }>
5
6
const apiClient = axios.create({ baseURL: `${PUBLIC_URL}/api` })
7
-console.log('apiClient baseURL:', apiClient.defaults.baseURL)
+
8
export const updaterApiClient = axios.create({
9
baseURL: `${PUBLIC_URL}/updater/api`,
10
})
0 commit comments