()
| 164 | }; |
| 165 | |
| 166 | export function apiKey(): UseQueryOptions<GenerateAPIKeyResponse> { |
| 167 | return { |
| 168 | queryKey: [...meKey, "apiKey"], |
| 169 | queryFn: () => API.getApiKey(), |
| 170 | }; |
| 171 | } |
| 172 | |
| 173 | export const hasFirstUserKey = ["hasFirstUser"]; |
| 174 |
no outgoing calls
no test coverage detected