diff --git a/frontend/src/components/ACLPage/Form/ForProducers/lib.ts b/frontend/src/components/ACLPage/Form/ForProducers/lib.ts index ccfc57f65..71a9372c6 100644 --- a/frontend/src/components/ACLPage/Form/ForProducers/lib.ts +++ b/frontend/src/components/ACLPage/Form/ForProducers/lib.ts @@ -10,6 +10,6 @@ export const toRequest = (formValues: FormValues): CreateProducerAcl => { topicsPrefix: formValues.topicsPrefix, transactionalId: formValues.transactionalId, transactionsIdPrefix: formValues.transactionsIdPrefix, - idempotent: formValues.indemponent, + idempotent: formValues.idempotent, }; }; diff --git a/frontend/src/components/ACLPage/Form/ForProducers/types.ts b/frontend/src/components/ACLPage/Form/ForProducers/types.ts index b6a4e38e0..bda109641 100644 --- a/frontend/src/components/ACLPage/Form/ForProducers/types.ts +++ b/frontend/src/components/ACLPage/Form/ForProducers/types.ts @@ -7,5 +7,5 @@ export interface FormValues { topicsPrefix?: string; transactionalId?: string; transactionsIdPrefix?: string; - indemponent: boolean; + idempotent: boolean; }