Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
echo-frontend
/
73cd882b27751c27c4f1368cb762bfc1bde852c0
/
.
/
src
/
components
/
utils
/
avatar.js
blob: ba13e1a4e8e40ab0312ae6aa9f6aa467b4bd89da [
file
] [
log
] [
blame
]
const
avatarBaseUrl
=
process
.
env
.
REACT_APP_AVATAR_BASE_URL
;
export
const
formatAvatarUrl
=
(
avatarPath
)
=>
{
return
avatarPath
?
`
$
{
avatarBaseUrl
}
$
{
avatarPath
}`
:
'https://example.com/default-avatar.jpg'
;
};