Skip to content

Commit 4a6835d

Browse files
committed
refactor(react-query): fix types
1 parent 18fdcc6 commit 4a6835d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsapp/js/account/usage/useServiceUsageQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ interface ServiceUsageQueryParams {
120120
shouldForceInvalidation?: boolean
121121
}
122122

123-
export const useServiceUsageQuery = (params?: ServiceUsageQueryParams): UseQueryResult<UsageState> => {
123+
export const useServiceUsageQuery = (params?: ServiceUsageQueryParams): UseQueryResult<UsageState | undefined> => {
124124
const { data: organizationData } = useOrganizationQuery()
125125

126126
useEffect(() => {

0 commit comments

Comments
 (0)