Fix predefined path

This commit is contained in:
2024-07-29 16:07:20 +02:00
parent bf2f4954ee
commit 5f9654b5af
4 changed files with 4 additions and 4 deletions
@@ -111,7 +111,7 @@ const UserImageDialog: FC<Props> = ({ user, open, onClose }) => {
formState.image
? URL.createObjectURL(formState.image)
: formState.predefined
? `profilbilder/default/${formState.predefined}.svg`
? `storage/profilbilder/default/${formState.predefined}.svg`
: `${user.image}`
}
sx={{ width: '100px', height: '100px' }}