mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 07:00:58 -05:00
fix: use config for initial configuration fetch
This commit is contained in:
parent
8d1e26d03e
commit
fc046936aa
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ export default observer(({ children }: Props) => {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (navigator.onLine) {
|
if (navigator.onLine) {
|
||||||
new Client().req("GET", "/").then(state.config.set);
|
state.config.createClient().req("GET", "/").then(state.config.set);
|
||||||
}
|
}
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue