Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Fixed
- Skip graphl query if parameter is null

## [3.1.0] - 2025-10-09

### Fixed
Expand Down
1 change: 1 addition & 0 deletions react/MyOrganizationLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@
},
})

const MyOrganizationLink: FC = ({ render }: any) => {

Check warning on line 15 in react/MyOrganizationLink.tsx

View workflow job for this annotation

GitHub Actions / QE / Lint Node.js

Unexpected any. Specify a different type
const { formatMessage } = useIntl()
const sessionResponse: any = useSessionResponse()

Check warning on line 17 in react/MyOrganizationLink.tsx

View workflow job for this annotation

GitHub Actions / QE / Lint Node.js

Unexpected any. Specify a different type
const userEmail = sessionResponse?.namespaces?.profile?.email?.value

const [show, setShow] = useState(false)

const { data } = useQuery(GetBinding, {
variables: { email: userEmail },
skip: !userEmail,
})

useEffect(() => {
Expand Down
Loading