diff --git a/README.md b/README.md
index f203c5664..4f0e32e5e 100644
--- a/README.md
+++ b/README.md
@@ -357,5 +357,5 @@ Your app / AI tool
---
- Give your AI a memory. It's about time.
+ Give your AI a memory. It's about time..
diff --git a/apps/web/app/upgrade-mcp/page.tsx b/apps/web/app/upgrade-mcp/page.tsx
index d62b37693..d9f4ab56f 100644
--- a/apps/web/app/upgrade-mcp/page.tsx
+++ b/apps/web/app/upgrade-mcp/page.tsx
@@ -185,7 +185,7 @@ export default function MigrateMCPPage() {
className="bg-white/5 border-white/10 text-white placeholder:text-slate-500 focus:border-blue-500/50 focus:ring-blue-500/20 transition-all duration-200 pl-4 pr-4 py-3 rounded-xl"
disabled={migrateMutation.isPending}
id="mcpUrl"
- onChange={(e) => setMcpUrl(e.target.value)}
+ onChange={(e: React.ChangeEvent) => setMcpUrl(e.target.value)}
placeholder="https://mcp.supermemory.ai/userId/sse"
type="url"
value={mcpUrl}
@@ -205,7 +205,7 @@ export default function MigrateMCPPage() {
className="bg-white/5 border-white/10 text-white placeholder:text-slate-500 focus:border-blue-500/50 focus:ring-blue-500/20 transition-all duration-200 pl-4 pr-4 py-3 rounded-xl"
disabled={migrateMutation.isPending}
id="projectId"
- onChange={(e) => setProjectId(e.target.value)}
+ onChange={(e: React.ChangeEvent) => setProjectId(e.target.value)}
placeholder="Project ID (default: 'default')"
type="text"
value={projectId}
diff --git a/apps/web/components/add-document/connections.tsx b/apps/web/components/add-document/connections.tsx
index d4dc2a83b..c6d9f00a5 100644
--- a/apps/web/components/add-document/connections.tsx
+++ b/apps/web/components/add-document/connections.tsx
@@ -1,7 +1,7 @@
"use client"
import { $fetch } from "@lib/api"
-import { fetchConnectionsFeature } from "@repo/lib/queries"
+import { fetchConnectionsFeature } from "@lib/queries"
import type { ConnectionResponseSchema } from "@repo/validation/api"
import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query"
import { GoogleDrive, Notion, OneDrive } from "@ui/assets/icons"
diff --git a/apps/web/components/add-document/index.tsx b/apps/web/components/add-document/index.tsx
index cf875329a..5521a86d5 100644
--- a/apps/web/components/add-document/index.tsx
+++ b/apps/web/components/add-document/index.tsx
@@ -37,7 +37,7 @@ export function AddDocumentModal({
const isMobile = useIsMobile()
return (
-