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.
1 parent e831c14 commit caa60aeCopy full SHA for caa60ae
.changeset/khaki-poems-approve.md
@@ -0,0 +1,7 @@
1
+---
2
+"@quassel/frontend": patch
3
+"@quassel/backend": patch
4
+"@quassel/ui": patch
5
6
+
7
+Add participant csv import
apps/frontend/src/routes/_auth/administration/participants/import.tsx
@@ -23,7 +23,7 @@ function AdministrationParticipantsImport() {
23
initialValues: [],
24
});
25
const handleSubmit = (values: FormValues) => {
26
- createParticipantMutation.mutate({ body: values });
+ createParticipantMutation.mutate({ body: Object.values(values) });
27
};
28
const mapValues = (values: ImportType[]): FormValues => {
29
return values.map((value) => ({
0 commit comments