);
diff --git a/components/theme-provider.tsx b/components/theme-provider.tsx
index 75a06f3..cadf070 100644
--- a/components/theme-provider.tsx
+++ b/components/theme-provider.tsx
@@ -9,6 +9,7 @@ export function ThemeProvider({ children }: { children: ReactNode }) {
attribute="class"
defaultTheme="system"
enableSystem
+ enableColorScheme
storageKey="devimpact-theme"
>
{children}
diff --git a/components/ui/skeleton.tsx b/components/ui/skeleton.tsx
index 0118624..8fc953e 100644
--- a/components/ui/skeleton.tsx
+++ b/components/ui/skeleton.tsx
@@ -4,7 +4,10 @@ function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
)
diff --git a/locales/ar.json b/locales/ar.json
index 9431ed5..c1182eb 100644
--- a/locales/ar.json
+++ b/locales/ar.json
@@ -47,6 +47,7 @@
"error.resourceLimit": "تم الوصول إلى حدود موارد GitHub API لهذا الطلب. حاول مرة أخرى بعد قليل.",
"error.missingUsername": "أدخل اسمين للمقارنة.",
"error.userNotFound": "لم يتم العثور على مستخدم GitHub",
+ "error.sameUser": "مطلوب اسمان مختلفان لمستخدمي GitHub.",
"explanations.contribution": "درجة المساهمات",
"explanations.line.contribution.1": "تعتمد درجة المساهمات على المشكلات والنقاشات الخارجية فقط.",
"explanations.line.contribution.2": "لا يتم احتساب الـ commits وطلبات السحب لتجنب العد المزدوج.",
diff --git a/locales/en.json b/locales/en.json
index 4a07471..af52421 100644
--- a/locales/en.json
+++ b/locales/en.json
@@ -47,6 +47,7 @@
"error.resourceLimit": "GitHub API resource limits were reached for this request. Please retry shortly.",
"error.missingUsername": "Provide two usernames to compare.",
"error.userNotFound": "GitHub user not found",
+ "error.sameUser": "Two different GitHub usernames are required.",
"explanations.contribution": "Contribution Score",
"explanations.line.contribution.1": "Contribution score is based on external issues and discussions only.",
"explanations.line.contribution.2": "Commits and pull requests are excluded to avoid double-counting.",
diff --git a/next-env.d.ts b/next-env.d.ts
deleted file mode 100644
index c4b7818..0000000
--- a/next-env.d.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-///
-///
-import "./.next/dev/types/routes.d.ts";
-
-// NOTE: This file should not be edited
-// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.