Skip to content

Commit

Permalink
fix: updated profile picture path
Browse files Browse the repository at this point in the history
  • Loading branch information
wawrzonnn committed Dec 12, 2023
1 parent 6452a90 commit 0a185e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/ProfileList/ProfileListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import classNames from 'classnames/bind'
import styles from '@/components/ProfileList/ProfileList.module.scss'
import React from 'react'
import { JobSpecialization } from '@/components/ProfileList/profile-data'
import ProfilePicture from '@/assets/images/ProfilePicture.png'
import { ProfileModel } from '@/data/frontend/profile/types'
import { AppRoutes } from '@/utils/routes'
import { useRouter } from 'next/navigation'
Expand Down Expand Up @@ -33,7 +32,7 @@ export const ProfileListItem: React.FC<{ data: ProfileModel }> = ({ data }) => {
>
<div className={styles.container} data-test-id="profileContainer">
<div className={styles.profile}>
<img src={ProfilePicture.src} alt="Profile Picture" />
<img src="/assets/images/ProfilePicture.png" alt="Profile Picture" />
</div>
<div className={styles.data}>
<p className={styles.name}>{data.fullName}</p>
Expand Down

0 comments on commit 0a185e1

Please sign in to comment.