diff --git a/web/src/screens/settings/DownloadClient.tsx b/web/src/screens/settings/DownloadClient.tsx
index fe66acd..d3fac7f 100644
--- a/web/src/screens/settings/DownloadClient.tsx
+++ b/web/src/screens/settings/DownloadClient.tsx
@@ -36,40 +36,42 @@ function DownloadClientSettingsListItem({ client, idx }: DLSettingsItemProps) {
};
return (
-
-
-
-
- Use setting
-
-
- |
- {client.name} |
- {client.host} |
- {DownloadClientTypeNameMap[client.type]} |
-
-
- Edit
-
- |
-
+
+
+
+
+
+ Use setting
+
+
+
+
{client.name}
+
{client.host}
+
{DownloadClientTypeNameMap[client.type]}
+
+
+ Edit
+
+
+
+
);
}
@@ -110,52 +112,29 @@ function DownloadClientSettings() {
-
+
{data && data.length > 0 ?
-
-
-
-
-
-
-
- Enabled
- |
-
- Name
- |
-
- Host
- |
-
- Type
- |
-
- Edit
- |
-
-
-
- {data && data.map((client, idx) => (
-
- ))}
-
-
-
-
-
+
+
+ -
+
+ Enabled
+
+
+ Name
+
+
+ Host
+
+
+ Type
+
+
+ {data && data.map((client, idx) => (
+
+ ))}
+
+
:
}