-
Notifications
You must be signed in to change notification settings - Fork 336
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
Markdown summary #794
Markdown summary #794
Changes from 6 commits
9e68852
fca2358
c238bcd
f72cb75
1f8e578
9e624f6
0fd0d8f
529e66c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ import {DragDropContext as dragDropContext} from 'react-dnd'; | |
import HTML5Backend from 'react-dnd-html5-backend'; | ||
|
||
const NewTeam = (props) => { | ||
console.log(props); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let's nuke this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ndey96 any update on this? |
||
const {dispatch, params: {newOrg}} = props; | ||
return ( | ||
<DashboardWrapper title="User Dashboard"> | ||
|
@@ -19,7 +20,7 @@ const NewTeam = (props) => { | |
NewTeam.propTypes = { | ||
dispatch: PropTypes.func.isRequired, | ||
params: PropTypes.shape({ | ||
newOrg: PropTypes.object | ||
newOrg: PropTypes.string | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. good catch! |
||
}) | ||
}; | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's move this outside the component since it'll never change & then we can reuse that same object for all the cards.