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 3bd3d32 commit 4b1797cCopy full SHA for 4b1797c
src/lib/tw-project-meta-fetcher-hoc.jsx
@@ -97,7 +97,7 @@ const TWProjectMetaFetcherHOC = function (WrappedComponent) {
97
const authorName = data.author.username;
98
const authorThumbnail = `https://projects.penguinmod.com/api/v1/users/getpfp?username=${data.author.username}`;
99
this.props.onSetAuthor(authorName, authorThumbnail);
100
- const instructions = data.instructions || '';
+ const instructions = data.desc || '';
101
const credits = data.notes || '';
102
if (instructions || credits) {
103
this.props.onSetDescription(instructions, credits);
0 commit comments