fix: change setHost to setCustomHost

This commit is contained in:
Antonella Sgarlatta
2021-07-05 14:39:48 -03:00
parent 1bb27503fa
commit 5ebdd4f13b

View File

@@ -67,7 +67,7 @@ const Authentication = observer(({
const handleHostInputChange = (event: TargetedEvent<HTMLInputElement>) => {
const { value } = event.target as HTMLInputElement;
setServer(value);
application.setHost(value);
application.setCustomHost(value);
};
const emailInputRef = useRef<HTMLInputElement>();