summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOliver <oliver@mohlin.dev>2026-04-10 13:30:56 +0200
committerOliver <oliver@mohlin.dev>2026-04-10 13:30:56 +0200
commit9baba8e84027f9107225c2e08dd729b7c861f67e (patch)
tree2121c83a41a489022bd2eab19d2aee01b72e66f0
parent8cd53533a0ab4ae7ad6c593663526bd2e207b661 (diff)
downloadmullvadvpn-9baba8e84027f9107225c2e08dd729b7c861f67e.tar.xz
mullvadvpn-9baba8e84027f9107225c2e08dd729b7c861f67e.zip
Fix custom lists using filtered locations instead of searched
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/views/select-location/SelectLocationViewContext.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/views/select-location/SelectLocationViewContext.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/views/select-location/SelectLocationViewContext.tsx
index 580de1c8fe..ee4b54d65a 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/views/select-location/SelectLocationViewContext.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/views/select-location/SelectLocationViewContext.tsx
@@ -54,7 +54,7 @@ export function SelectLocationViewProvider({ children }: SelectLocationViewProvi
const searchedCountryLocations = useSearchCountryLocations(filteredCountryLocations, searchTerm);
const filteredCustomListLocations = useMapCustomListsToLocations(
- filteredCountryLocations,
+ searchedCountryLocations,
searchTerm,
selectedLocation,
);