2022-09-30 19:34:27 -04:00
|
|
|
import definePlugin from "../utils/types";
|
|
|
|
|
|
|
|
export default definePlugin({
|
|
|
|
name: "Folder SVG Icon",
|
|
|
|
description: "Doesn't show the small guild icons in folders",
|
2022-09-30 20:27:28 -04:00
|
|
|
authors: [{
|
|
|
|
name: "botato",
|
|
|
|
id: 440990343899643943n
|
|
|
|
}],
|
2022-09-30 19:34:27 -04:00
|
|
|
patches: [{
|
|
|
|
find: "().expandedFolderIconWrapper",
|
|
|
|
replacement: [{
|
|
|
|
match: /\(\w\|\|\w\)(&&\(\w=\w\.createElement\(\w+\.animated)/,
|
|
|
|
replace: "true$1",
|
|
|
|
}]
|
|
|
|
}]
|
|
|
|
});
|