diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5f18dec67..16dd2c6ac 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -89,7 +89,7 @@ To run the landing page: If you encounter any issues, ensure that you are using the following versions of Rust, Node and Pnpm: -- Rust version: **1.78** +- Rust version: **1.79** - Node version: **18.18** - Pnpm version: **9.1.1** diff --git a/interface/app/$libraryId/settings/client/general.tsx b/interface/app/$libraryId/settings/client/general.tsx index 4f4e1c032..850df4d00 100644 --- a/interface/app/$libraryId/settings/client/general.tsx +++ b/interface/app/$libraryId/settings/client/general.tsx @@ -69,7 +69,7 @@ export const Component = () => { } }); - const watchBackgroundProcessingPercentage = form.watch('background_processing_percentage'); + // const watchBackgroundProcessingPercentage = form.watch('background_processing_percentage'); useDebouncedFormWatch(form, async (value) => { if (await form.trigger()) { @@ -85,9 +85,9 @@ export const Component = () => { image_labeler_version: value.image_labeler_version ?? null }); - if (value.background_processing_percentage != undefined) { + if (value.background_processing_percentage != null) { await updateThumbnailerPreferences.mutateAsync({ - background_processing_percentage: value.background_processing_percentage + // background_processing_percentage: value.background_processing_percentage }); } }