We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96a77a1 commit 23a74afCopy full SHA for 23a74af
src/lib/tw-project-meta-fetcher-hoc.jsx
@@ -122,17 +122,11 @@ const TWProjectMetaFetcherHOC = function (WrappedComponent) {
122
if (this.props.projectId !== projectId) {
123
return;
124
}
125
- // If this project is hidden or not approved, ignore the results.
126
- if (
127
- typeof remixProject.name === 'string'
128
- || typeof remixProject.owner === 'string'
129
- ) {
130
- this.props.onSetRemixedProjectInfo(
131
- true, // loaded
132
- remixProject.name,
133
- remixProject.owner
134
- );
135
- }
+ this.props.onSetRemixedProjectInfo(
+ true, // loaded
+ remixProject.name,
+ remixProject.owner
+ );
136
})
137
.catch(err => {
138
// this isnt fatal, just log
0 commit comments