remove firestore requirement

This commit is contained in:
shamsmosowi
2021-11-30 19:32:38 +07:00
parent e339d0e7dd
commit 5d90de2546

View File

@@ -37,7 +37,6 @@ export default function DeployPage() {
const [continued, setContinued] = useState(false);
const [confirmProject, setConfirmProject] = useState(false);
const [confirmFirestore, setConfirmFirestore] = useState(false);
const [confirmAuth, setConfirmAuth] = useState(false);
return (
@@ -94,17 +93,6 @@ export default function DeployPage() {
}
label="A Google Cloud or Firebase project"
/>
<FormControlLabel
control={
<Checkbox
checked={confirmFirestore}
onChange={(e) =>
setConfirmFirestore(e.target.checked)
}
/>
}
label="Firestore enabled"
/>
<FormControlLabel
control={
<Checkbox
@@ -129,7 +117,7 @@ export default function DeployPage() {
</Typography>
<div style={{ margin: "1rem 0", textAlign: "center" }}>
{confirmProject && confirmFirestore && confirmAuth ? (
{confirmProject && confirmAuth ? (
<a
href={EXTERNAL_LINKS.rowyRunDeploy}
target="_blank"