get RESIDENTIAL_DE back which was deleted unexpectedly - frontend (#1694)

This commit is contained in:
Shuchang Zheng
2025-02-01 05:29:42 +08:00
committed by GitHub
parent 588be8166c
commit 0da1e387f1
2 changed files with 4 additions and 0 deletions

View File

@@ -37,6 +37,7 @@ export const ProxyLocation = {
ResidentialJP: "RESIDENTIAL_JP",
ResidentialGB: "RESIDENTIAL_GB",
ResidentialFR: "RESIDENTIAL_FR",
ResidentialDE: "RESIDENTIAL_DE",
None: "NONE",
} as const;

View File

@@ -39,6 +39,9 @@ function ProxySelector({ value, onChange, className }: Props) {
<SelectItem value={ProxyLocation.ResidentialFR}>
Residential (France)
</SelectItem>
<SelectItem value={ProxyLocation.ResidentialDE}>
Residential (Germany)
</SelectItem>
</SelectContent>
</Select>
);