diff --git a/invokeai/frontend/web/src/common/components/IAIOption.tsx b/invokeai/frontend/web/src/common/components/IAIOption.tsx index 696d12f92c..9c8a611160 100644 --- a/invokeai/frontend/web/src/common/components/IAIOption.tsx +++ b/invokeai/frontend/web/src/common/components/IAIOption.tsx @@ -4,19 +4,14 @@ import { ReactNode } from 'react'; type IAIOptionProps = { children: ReactNode | string | number; value: string | number; - key: string | number; }; export default function IAIOption(props: IAIOptionProps) { - const { children, value, key } = props; + const { children, value } = props; const [base800, base200] = useToken('colors', ['base.800', 'base.200']); return ( - );