We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25f5b98 commit f9b113cCopy full SHA for f9b113c
1 file changed
src/ui/components/PurposeContainer.tsx
@@ -2,10 +2,8 @@ import {useConsent, useTheme} from '../utils/hooks';
2
import {ConsentState} from './types/ConsentState';
3
import {PurposeProps} from './types/Purpose';
4
5
-export interface PurposeContainerProps extends Omit<
6
- PurposeProps,
7
- 'consent' | 'onChange'
8
-> {}
+export interface PurposeContainerProps
+ extends Omit<PurposeProps, 'consent' | 'onChange'> {}
9
10
const PurposeContainer = (props: PurposeContainerProps) => {
11
const [consent, setConsent] = useConsent(props.id);
0 commit comments