diff --git a/frontend/src/components/ProductForm.tsx b/frontend/src/components/ProductForm.tsx index 02868f0..7859e0b 100644 --- a/frontend/src/components/ProductForm.tsx +++ b/frontend/src/components/ProductForm.tsx @@ -5,6 +5,8 @@ interface ProductFormProps { } const REFRESH_INTERVALS = [ + { value: 300, label: '5 minutes' }, + { value: 600, label: '10 minutes' }, { value: 900, label: '15 minutes' }, { value: 1800, label: '30 minutes' }, { value: 3600, label: '1 hour' }, @@ -113,6 +115,11 @@ export default function ProductForm({ onSubmit }: ProductFormProps) { ))} + {refreshInterval === 300 && ( + + Warning: Very frequent checks may result in rate limiting + + )}