We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd6e369 commit 1b44096Copy full SHA for 1b44096
CHANGELOG.md
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
8
## [Unreleased]
9
10
+### Fixed
11
+- Skip graphl query if parameter is null
12
+
13
## [3.1.0] - 2025-10-09
14
15
### Fixed
react/MyOrganizationLink.tsx
@@ -21,6 +21,7 @@ const MyOrganizationLink: FC = ({ render }: any) => {
21
22
const { data } = useQuery(GetBinding, {
23
variables: { email: userEmail },
24
+ skip: !userEmail,
25
})
26
27
useEffect(() => {
0 commit comments