Skip to content

Commit

Permalink
fix: typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
Raubzeug committed Dec 25, 2024
1 parent 8a5c907 commit 225f4c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/store/reducers/capabilities/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ function useDatabaseFromQuery() {
export function useCapabilitiesQuery() {
const database = useDatabaseFromQuery();

return capabilitiesApi.useGetClusterCapabilitiesQuery({database});
const result = capabilitiesApi.useGetClusterCapabilitiesQuery({database});
return result;
}

export function useCapabilitiesLoaded() {
Expand Down

0 comments on commit 225f4c5

Please sign in to comment.