fix: remove useless credentials

pull/12/head
c-cal 5 years ago
parent 7ef1fb46bf
commit 80c7f5dfab
Signed by: watcha
GPG Key ID: 87DD78E7F7A1581D
  1. 4
      src/Login.js

@ -12,8 +12,8 @@ import { useMatrixClientContext } from "./contexts";
import logo from "./images/logo.svg";
const Login = ({ setupClient, t, i18n }) => {
const [username, setUsername] = useState("cc");
const [password, setPassword] = useState("aze");
const [username, setUsername] = useState();
const [password, setPassword] = useState();
const [pendingLogin, setPendingLogin] = useState(false);
const client = useMatrixClientContext();

Loading…
Cancel
Save