Files

10 lines
232 B
TypeScript
Raw Permalink Normal View History

2025-01-02 15:33:37 +11:00
import { NEXT_PUBLIC_WEBAPP_URL } from '../constants/app';
export const formatAvatarUrl = (imageId?: string | null) => {
if (!imageId) {
return undefined;
}
return `${NEXT_PUBLIC_WEBAPP_URL()}/api/avatar/${imageId}`;
};