chore: format files using prettier (#7364)

* chore: format files using prettier

* chore: api server files formatted
This commit is contained in:
sriram veeraghanta 2025-07-08 20:41:11 +05:30 committed by GitHub
parent 0225d806cc
commit 6ce700fd5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
149 changed files with 1518 additions and 919 deletions

View file

@ -319,7 +319,6 @@ export const copyTextToClipboard = async (text: string): Promise<void> => {
await navigator.clipboard.writeText(text);
};
/**
* @description Joins URL path segments properly, removing duplicate slashes using URL encoding
* @param {...string} segments - URL path segments to join
@ -371,4 +370,4 @@ export const joinUrlPath = (...segments: string[]): string => {
const pathParts = joined.split("/").filter((part) => part !== "");
return pathParts.length > 0 ? `/${pathParts.join("/")}` : "";
}
};
};