remove message confusion, add project name during give-details

This commit is contained in:
2024-04-21 20:31:57 -06:00
parent 4e877c15f6
commit 1df2d3ed05
8 changed files with 58 additions and 41 deletions

View File

@@ -454,8 +454,8 @@ async function getHeaders(identity: IIdentifier | null) {
}
/**
* @param handleId nullable -- which means that "undefined" will be returned
* @param identity nullable -- which means no private info will be returned
* @param handleId nullable, in which case "undefined" will be returned
* @param identity nullable, in which case no private info will be returned
* @param axios
* @param apiServer
*/
@@ -464,7 +464,7 @@ export async function getPlanFromCache(
identity: IIdentifier | null,
axios: Axios,
apiServer: string,
) {
): Promise<PlanSummaryRecord | undefined> {
if (!handleId) {
return undefined;
}