You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(counit): use correct type declaration for decoding #51
The `json.decodeFromString` call was incorrectly assigning the result to a variable of type `ExplainQuery` without specifying the generic type. This commit fixes the type declaration to be `json.decodeFromString<ExplainQuery>`, which ensures that the correct type inference is used when decoding the JSON string. This change ensures that the correct type is being used and avoids potential runtime errors.
0 commit comments