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
+1 -1
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,
);
}