We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a48f2e + a92a45f commit 6e1f27cCopy full SHA for 6e1f27c
src/components/createLegionForm/CreateLegionForm.js
@@ -9,7 +9,6 @@ import { musicLeaguePrompts } from '@/data/defaultPrompts';
9
import { status, stage } from '@/utils/status';
10
11
const CreateLegionForm = ({ currentUser }) => {
12
- console.log('current user', currentUser);
13
14
const router = useRouter();
15
const [formData, setFormData] = useState({
@@ -156,8 +155,7 @@ const CreateLegionForm = ({ currentUser }) => {
156
155
};
157
158
const result = await submitLegion(updatedFormData);
159
- console.log('result', result);
160
- console.log('updated form data', updatedFormData);
+
161
if (result.success) {
162
await incrementUserLegions(currentUser.uid);
163
const newLegionId = result.id;
0 commit comments