refactor: remove exports internos sem uso

This commit is contained in:
Felipe Coutinho
2026-06-06 16:31:38 -03:00
parent 356801324c
commit 811a035cb0
6 changed files with 4 additions and 48 deletions

View File

@@ -36,7 +36,7 @@ export const getLogoDisplayName = (logo?: string | null): string => {
* @example
* deriveNameFromLogo("my-company-logo.png") // "My Company Logo"
*/
export const deriveNameFromLogo = (logo?: string | null) => {
const deriveNameFromLogo = (logo?: string | null) => {
if (!logo) {
return "";
}