Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 15ee30d

Browse filesBrowse files
committed
remove unused prop
1 parent 3febb68 commit 15ee30d
Copy full SHA for 15ee30d

4 files changed

+4-4Lines changed: 4 additions & 4 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎solutions/02-graphql/src/components/Note.js‎

Copy file name to clipboardExpand all lines: solutions/02-graphql/src/components/Note.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const NoteView = styled.ScrollView`
88
padding: 10px;
99
`;
1010

11-
const Note = ({ note, preview }) => {
11+
const Note = ({ note }) => {
1212
return (
1313
<NoteView>
1414
<Text>
Collapse file

‎solutions/02-graphql/src/components/NoteFeed.js‎

Copy file name to clipboardExpand all lines: solutions/02-graphql/src/components/NoteFeed.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const NoteFeed = props => {
4747
}
4848
>
4949
<FeedView>
50-
<NoteComponent note={item} preview={true} />
50+
<NoteComponent note={item} />
5151
</FeedView>
5252
</TouchableOpacity>
5353
)}
Collapse file

‎solutions/03-authentication/src/components/Note.js‎

Copy file name to clipboardExpand all lines: solutions/03-authentication/src/components/Note.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const NoteView = styled.ScrollView`
88
padding: 10px;
99
`;
1010

11-
const NoteComponent = ({ note, preview }) => {
11+
const NoteComponent = ({ note }) => {
1212
return (
1313
<NoteView>
1414
<Text>
Collapse file

‎solutions/03-authentication/src/components/NoteFeed.js‎

Copy file name to clipboardExpand all lines: solutions/03-authentication/src/components/NoteFeed.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const NoteFeed = props => {
4747
}
4848
>
4949
<FeedView>
50-
<NoteComponent note={item} preview={true} />
50+
<NoteComponent note={item} />
5151
</FeedView>
5252
</TouchableOpacity>
5353
)}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.