Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
chore: disable center camera by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Pixselve committed Jan 24, 2024
1 parent 02770c6 commit 921b615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import logo from "../assets/logo.png";
export default function HomePage() {
const [serverUrl, setServerUrl] = useState<string>("http://localhost:4000");
const api = useApi(serverUrl);
const [isCentered, setIsCentered] = useState<boolean>(true);
const [isCentered, setIsCentered] = useState<boolean>(false);
const [username, setUsername] = useState("");

return (
Expand Down

0 comments on commit 921b615

Please sign in to comment.