diff --git a/src/components/sections/Hero.tsx b/src/components/sections/Hero.tsx
index f42ecdb..c8a0254 100644
--- a/src/components/sections/Hero.tsx
+++ b/src/components/sections/Hero.tsx
@@ -19,7 +19,7 @@ export default function Hero() {
-

+
diff --git a/src/components/sections/PluginsList.tsx b/src/components/sections/PluginsList.tsx
index e06fb32..d13d3ed 100644
--- a/src/components/sections/PluginsList.tsx
+++ b/src/components/sections/PluginsList.tsx
@@ -30,7 +30,7 @@ const PluginsList: React.FC = ({ pluginData }) => {
name={plugin?.name}
description={plugin?.description}
authors={plugin?.author}
- downloadsCount={plugin?.donwloads}
+ downloadsCount={plugin?.downloads}
downloadUrl={"https://npmjs.com/package/" + plugin.name}
/> )}
diff --git a/src/hooks/usePlugins.ts b/src/hooks/usePlugins.ts
index 77c4c9c..80aa811 100644
--- a/src/hooks/usePlugins.ts
+++ b/src/hooks/usePlugins.ts
@@ -9,7 +9,7 @@ export interface PluginMetadata {
version?: string;
author?: string;
homepage?: string;
- donwloads?: number;
+ downloads?: number;
license?: string;
isFeatured?: boolean;
}
@@ -47,7 +47,7 @@ export const usePlugins = (): PluginsData => {
version: manifest.version,
author: manifest.author?.name ?? manifest.contributors?.map(c => c.name).join(", ") ?? "Unknown",
homepage: manifest.homepage,
- donwloads: downloads?.downloads ?? 0,
+ downloads: downloads?.downloads ?? 0,
license: manifest.license,
description: manifest.description,
isFeatured: pluginsJSON.isFeatured