From 2c13baa13917f35bf0c0fa5ebcdc34a5a736420a Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Fri, 6 Dec 2024 14:27:18 -0700 Subject: [PATCH] Use "get" instead of "has" for checking searchParams (#2113) Fix https://github.com/electric-sql/electric/issues/2072 Not all implementations of JS have the `has(name, value)` syntax --- .changeset/modern-poets-film.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .changeset/modern-poets-film.md diff --git a/.changeset/modern-poets-film.md b/.changeset/modern-poets-film.md new file mode 100644 index 0000000000..e844ad9aa0 --- /dev/null +++ b/.changeset/modern-poets-film.md @@ -0,0 +1,7 @@ +--- +"@electric-sql/client": patch +--- + +Use "get" instead of "has" for checking searchParams + +Not all implementations of JS have the has(name, value) syntax e.g. Expo.