mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
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}`;
|
|
};
|