Skip to content

some testing changings #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ In this video, you'll learn:
## Want to land your dream programming job in 3 - 6 months?
⭐ JSM Masterclass Experience - https://jsmastery.pro/masterclass
Become a Software Engineer. Guaranteed.

## Testing
I'm testing to lean PR submission
4 changes: 2 additions & 2 deletions components/Nav.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Nav = () => {

<Link href='/profile'>
<Image
src={session?.user.image}
src={session?.user?.image}
width={37}
height={37}
className='rounded-full'
Expand Down Expand Up @@ -77,7 +77,7 @@ const Nav = () => {
{session?.user ? (
<div className='flex'>
<Image
src={session?.user.image}
src={session?.user?.image}
width={37}
height={37}
className='rounded-full'
Expand Down
2 changes: 1 addition & 1 deletion components/PromptCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const PromptCard = ({ post, handleEdit, handleDelete, handleTagClick }) => {
onClick={handleProfileClick}
>
<Image
src={post.creator.image}
src={post.creator?.image}
alt='user_image'
width={40}
height={40}
Expand Down