diff --git a/src/lib/tw-project-meta-fetcher-hoc.jsx b/src/lib/tw-project-meta-fetcher-hoc.jsx index 7885f619228..fcbb1339bc6 100644 --- a/src/lib/tw-project-meta-fetcher-hoc.jsx +++ b/src/lib/tw-project-meta-fetcher-hoc.jsx @@ -97,7 +97,7 @@ const TWProjectMetaFetcherHOC = function (WrappedComponent) { const authorName = data.author.username; const authorThumbnail = `https://projects.penguinmod.com/api/v1/users/getpfp?username=${data.author.username}`; this.props.onSetAuthor(authorName, authorThumbnail); - const instructions = data.instructions || ''; + const instructions = data.desc || ''; const credits = data.notes || ''; if (instructions || credits) { this.props.onSetDescription(instructions, credits);