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 8eadf41 commit 0827f8dCopy full SHA for 0827f8d
src/containers/extension-library.jsx
@@ -57,8 +57,8 @@ const fetchLibrary = async () => {
57
iconURL: `https://extensions.turbowarp.org/${extension.image || 'images/unknown.svg'}`,
58
tags: ['tw'],
59
credits: [
60
- ...(extension.by || []),
61
- ...(extension.original || [])
+ ...(extension.original || []),
+ ...(extension.by || [])
62
].map(credit => {
63
if (credit.link) {
64
return (
@@ -79,7 +79,7 @@ const fetchLibrary = async () => {
79
href: `${process.env.ROOT}editor?project_url=https://extensions.turbowarp.org/samples/${encodeURIComponent(sample)}.sb3`,
80
text: sample
81
})) : null,
82
- incompatibleWithScratch: true,
+ incompatibleWithScratch: !extension.scratchCompatible,
83
featured: true
84
}));
85
};
0 commit comments