mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-29 00:16:39 +01:00
remove firestore requirement
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user