We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f19655d commit aa62cd2Copy full SHA for aa62cd2
src/components/note/note.component.jsx
@@ -7,7 +7,7 @@ export const Note = ({note}) => {
7
<div className='note-single'>
8
<h3 className='note-title'>{note.title}</h3>
9
<p className='note-body'>{note.body}</p>
10
- <Link className='note-link' to={`/${note.ID}`}>View Detail</Link>
+ <Link className='note-link' to={`/${note.id}`}>View Detail</Link>
11
</div>
12
)
13
}
0 commit comments