Skip to content

Commit 63a65fd

Browse files
authored
Fixes #424
1 parent d8fd5c3 commit 63a65fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/components/ACLPage/Form/ForProducers/lib.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ export const toRequest = (formValues: FormValues): CreateProducerAcl => {
1010
topicsPrefix: formValues.topicsPrefix,
1111
transactionalId: formValues.transactionalId,
1212
transactionsIdPrefix: formValues.transactionsIdPrefix,
13-
idempotent: formValues.indemponent,
13+
idempotent: formValues.idempotent,
1414
};
1515
};

frontend/src/components/ACLPage/Form/ForProducers/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ export interface FormValues {
77
topicsPrefix?: string;
88
transactionalId?: string;
99
transactionsIdPrefix?: string;
10-
indemponent: boolean;
10+
idempotent: boolean;
1111
}

0 commit comments

Comments
 (0)