aboutsummaryrefslogtreecommitdiff
path: root/src/components/PluginSettings
diff options
context:
space:
mode:
authorNickyux <30734036+nmsturcke@users.noreply.github.com>2022-11-21 19:37:16 +0100
committerGitHub <noreply@github.com>2022-11-21 19:37:16 +0100
commit3ee41852243484223cfdc12022c4343ce8f367df (patch)
treed608fd5701ad1785253cd72b64db5fbf12cd7d98 /src/components/PluginSettings
parent9831c8d6dadc510302d917015c875944d32dc858 (diff)
parentb5bc88c7d441f8d24df70419d7e8e77eaa7f284e (diff)
downloadVencord-3ee41852243484223cfdc12022c4343ce8f367df.tar.gz
Vencord-3ee41852243484223cfdc12022c4343ce8f367df.tar.bz2
Vencord-3ee41852243484223cfdc12022c4343ce8f367df.zip
Merge branch 'main' into patch-5
Diffstat (limited to 'src/components/PluginSettings')
-rw-r--r--src/components/PluginSettings/index.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/PluginSettings/index.tsx b/src/components/PluginSettings/index.tsx
index e0f1815..a605d31 100644
--- a/src/components/PluginSettings/index.tsx
+++ b/src/components/PluginSettings/index.tsx
@@ -301,6 +301,7 @@ export default ErrorBoundary.wrap(function Settings() {
disabled={plugin.required || !!dependency}
plugin={plugin}
isNew={newPlugins?.includes(plugin.name)}
+ key={plugin.name}
/>;
})
: <Text variant="text-md/normal">No plugins meet search criteria.</Text>
@@ -319,7 +320,7 @@ export default ErrorBoundary.wrap(function Settings() {
const tooltipText = plugin.required
? "This plugin is required for Vencord to function."
: makeDependencyList(dependencyCheck(plugin.name, depMap));
- return <Tooltip text={tooltipText}>
+ return <Tooltip text={tooltipText} key={plugin.name}>
{({ onMouseLeave, onMouseEnter }) => (
<PluginCard
onMouseLeave={onMouseLeave}