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 d8fd5c3 commit 63a65fdCopy full SHA for 63a65fd
frontend/src/components/ACLPage/Form/ForProducers/lib.ts
@@ -10,6 +10,6 @@ export const toRequest = (formValues: FormValues): CreateProducerAcl => {
10
topicsPrefix: formValues.topicsPrefix,
11
transactionalId: formValues.transactionalId,
12
transactionsIdPrefix: formValues.transactionsIdPrefix,
13
- idempotent: formValues.indemponent,
+ idempotent: formValues.idempotent,
14
};
15
frontend/src/components/ACLPage/Form/ForProducers/types.ts
@@ -7,5 +7,5 @@ export interface FormValues {
7
topicsPrefix?: string;
8
transactionalId?: string;
9
transactionsIdPrefix?: string;
- indemponent: boolean;
+ idempotent: boolean;
}
0 commit comments