Updated the custom error there was a Typo. (#2618)

"Something went while trying to retrieve the stats data using the GraphQL API." -> "Something went wrong while trying to retrieve the stats data using the GraphQL API."
This commit is contained in:
LOKESH SINGH 2023-04-24 23:54:05 +05:30 committed by GitHub
parent 879937c11d
commit aec73d293e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -213,7 +213,7 @@ const fetchStats = async (
);
}
throw new CustomError(
"Something went while trying to retrieve the stats data using the GraphQL API.",
"Something went wrong while trying to retrieve the stats data using the GraphQL API.",
CustomError.GRAPHQL_ERROR,
);
}