Skip to content

Commit 904db8a

Browse files
committed
Revert "sigma"
This reverts commit 7859bd9.
1 parent 4a113c2 commit 904db8a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/lib/tw-project-meta-fetcher-hoc.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,13 @@ const TWProjectMetaFetcherHOC = function (WrappedComponent) {
103103
this.props.onSetDescription(instructions, credits);
104104
}
105105
if (
106-
String(rawData.remix) !== '0' // checks isRemix and remixId existing at the same time
106+
typeof rawData.accepted === 'boolean'
107+
|| typeof rawData.removedsoft === 'boolean'
108+
|| String(rawData.remix) !== '0' // checks isRemix and remixId existing at the same time
109+
|| typeof rawData.tooLarge === 'boolean'
110+
|| authorName
107111
) {
112+
console.log(rawData.remix);
108113
this.props.onSetExtraProjectInfo(
109114
rawData.public && !rawData.softRejected,
110115
String(rawData.remix) !== '0',

0 commit comments

Comments
 (0)