Skip to content

Commit

Permalink
Merge pull request #612 from yeatmanlab/fix/org-test-data
Browse files Browse the repository at this point in the history
Correct testData behavior on createOrgs
  • Loading branch information
richford authored May 28, 2024
2 parents 8df52b5 + 4aa9f58 commit 517dc2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CreateOrgs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ const submit = async () => {
});
} else {
await roarfirekit.value
.createOrg(orgType.value.firestoreCollection, orgData, isTestData, isDemoData)
.createOrg(orgType.value.firestoreCollection, orgData, isTestData.value, isDemoData.value)
.then(() => {
toast.add({ severity: 'success', summary: 'Success', detail: 'Org created', life: 3000 });
submitted.value = false;
Expand Down

0 comments on commit 517dc2f

Please sign in to comment.