diff --git a/components/settings/Settings.tsx b/components/settings/Settings.tsx index b0def46..32b5b43 100644 --- a/components/settings/Settings.tsx +++ b/components/settings/Settings.tsx @@ -82,6 +82,10 @@ const Settings = ({ closeSettings }:SettingsProps) => { } else { // Perform Update updateMutate(settings); + // If Scraper is updated, refresh the page. + if (appSettings.settings === 'none' && scraper_type !== 'none') { + window.location.reload(); + } } };