Migrate to power search

Reviewed By: LukeDefeo

Differential Revision: D51027189

fbshipit-source-id: 4fb3699a278db280237e5182d41d3c746e44a2bb
This commit is contained in:
Andrey Goncharov
2023-11-08 02:08:25 -08:00
committed by Facebook GitHub Bot
parent a8f5fecc2b
commit 4bb0f59ab8
7 changed files with 85 additions and 21 deletions

View File

@@ -268,10 +268,6 @@ export function formatBytes(count: number | undefined): string {
return count + ' B';
}
export function formatStatus(status: number | undefined) {
return status ? '' + status : '';
}
export function formatOperationName(requestData: string): string {
try {
const parsedData = JSON.parse(requestData);