diff --git a/frontend/src/components/settings/arrs/ArrModal.jsx b/frontend/src/components/settings/arrs/ArrModal.jsx index ac08250..c3788b4 100644 --- a/frontend/src/components/settings/arrs/ArrModal.jsx +++ b/frontend/src/components/settings/arrs/ArrModal.jsx @@ -299,6 +299,31 @@ const ArrModal = ({isOpen, onClose, onSubmit, editingArr}) => { +
+ {formData.sync_method === 'manual' && ( +

+ Manual sync allows you to selectively import data + when changes occur in the source instance. You'll + need to manually select and import the data you want + to sync. +

+ )} + {formData.sync_method === 'pull' && ( +

+ On Pull automatically syncs data whenever the + database pulls in new changes. This is a "set and + forget" option - perfect for maintaining consistency + across instances without manual intervention. +

+ )} + {formData.sync_method === 'schedule' && ( +

+ Scheduled sync runs at fixed intervals, ensuring + your instances stay in sync at regular times. +

+ )} +
+ {/* Conditional Fields for Sync Method */} {formData.sync_method === 'schedule' && (