diff --git a/src/components/Settings/SettingsPlex.tsx b/src/components/Settings/SettingsPlex.tsx index 87d1fe39a..d9d97c5d8 100644 --- a/src/components/Settings/SettingsPlex.tsx +++ b/src/components/Settings/SettingsPlex.tsx @@ -78,7 +78,7 @@ const SettingsPlex: React.FC = ({ onComplete }) => { try { await axios.post('/api/v1/settings/plex', { ip: values.hostname, - port: values.port, + port: Number(values.port), } as PlexSettings); revalidate();