Skip to content
Snippets Groups Projects
Commit e69a7445 authored by Alexander Polyankin's avatar Alexander Polyankin
Browse files

Fix default value

parent 7a63242e
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ export const getValidationSchema = (
refingerprint: Yup.boolean().default(false),
cache_ttl: Yup.number().nullable().default(null).positive(Errors.positive),
is_sample: Yup.boolean().default(false),
is_full_sync: Yup.boolean().default(true),
is_full_sync: Yup.boolean().default(false),
is_on_demand: Yup.boolean().default(false),
});
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment