Unify creditCosts.ts files (#5952)

Co-authored-by: Anthony Stirling <[email protected]>
This commit is contained in:
James Brunton
2026-03-16 22:05:02 +00:00
committed by GitHub
co-authored by Anthony Stirling
parent dbff05814f
commit 7f9bbebe5b
8 changed files with 48 additions and 140 deletions
@@ -1,5 +1,5 @@
import { useTranslation } from 'react-i18next';
import { Stack, Select, Checkbox } from '@mantine/core';
import { Stack, Select } from '@mantine/core';
import { ExtractImagesParameters } from '@app/hooks/tools/extractImages/useExtractImagesParameters';
import { Z_INDEX_AUTOMATE_DROPDOWN } from "@app/styles/zIndex";
@@ -35,12 +35,12 @@ const ExtractImagesSettings = ({
comboboxProps={{ withinPortal: true, zIndex: Z_INDEX_AUTOMATE_DROPDOWN }}
/>
<Checkbox
{/* <Checkbox
label={t('extractImages.allowDuplicates', 'Allow Duplicate Images')}
checked={parameters.allowDuplicates}
onChange={(event) => onParameterChange('allowDuplicates', event.currentTarget.checked)}
disabled={disabled}
/>
/> */}
</Stack>
);
};