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", ResidentialJP: "RESIDENTIAL_JP",
ResidentialGB: "RESIDENTIAL_GB", ResidentialGB: "RESIDENTIAL_GB",
ResidentialFR: "RESIDENTIAL_FR", ResidentialFR: "RESIDENTIAL_FR",
ResidentialDE: "RESIDENTIAL_DE",
None: "NONE", None: "NONE",
} as const; } as const;

View File

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