diff --git a/src/page/me/chat-list.tsx b/src/page/me/chat-list.tsx index cb735ac..74e3e56 100644 --- a/src/page/me/chat-list.tsx +++ b/src/page/me/chat-list.tsx @@ -10,7 +10,6 @@ interface SuggestionCard { title: string; body: string; icon: React.ComponentType<{ className?: string }>; - gradient: string; } const SUGGESTIONS: SuggestionCard[] = [ @@ -18,25 +17,21 @@ const SUGGESTIONS: SuggestionCard[] = [ title: "Code Review", body: "Review my pull request for bugs and improvements", icon: Code2, - gradient: "from-emerald-500/10 to-emerald-500/[0.02]", }, { title: "Debug Help", body: "Help me diagnose this failing test case", icon: Bug, - gradient: "from-amber-500/10 to-amber-500/[0.02]", }, { title: "Explain Code", body: "Explain how this algorithm works step by step", icon: Lightbulb, - gradient: "from-violet-500/10 to-violet-500/[0.02]", }, { title: "Refactor", body: "Suggest refactoring for better readability", icon: Wand2, - gradient: "from-sky-500/10 to-sky-500/[0.02]", }, ]; @@ -118,7 +113,7 @@ export default function MeChatListPage() { whileHover={{ scale: 1.02, transition: { duration: 0.15 } }} whileTap={{ scale: 0.98 }} type="button" - className={`group cursor-pointer rounded-xl border border-border/40 bg-gradient-to-br ${suggestion.gradient} px-4 py-3.5 text-left transition-all duration-200 hover:border-border/80 hover:shadow-sm hover:ring-1 hover:ring-primary/10 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring`} + className="group cursor-pointer rounded-xl border border-border/40 bg-card px-4 py-3.5 text-left transition-[background-color,border-color,box-shadow,transform] duration-200 hover:border-border/80 hover:bg-muted/30 hover:shadow-sm hover:ring-1 hover:ring-primary/10 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring" onClick={() => handleQuickStart(suggestion.title, suggestion.body)} aria-label={`${suggestion.title}: ${suggestion.body}`} > diff --git a/src/page/me/overview/activity.tsx b/src/page/me/overview/activity.tsx index f7c7efd..e12c885 100644 --- a/src/page/me/overview/activity.tsx +++ b/src/page/me/overview/activity.tsx @@ -81,7 +81,7 @@ export function ActivityFeed({ relationCounts }: { relationCounts: { followers: {new Date(apply.updated_at).toLocaleDateString("en-US", { month: "short", day: "numeric" })}
- + Pending diff --git a/src/page/settings/security.tsx b/src/page/settings/security.tsx index 5d0dce3..d90193b 100644 --- a/src/page/settings/security.tsx +++ b/src/page/settings/security.tsx @@ -32,7 +32,7 @@ function TwoFactorSection() {Verification email sent. Check your inbox.
+Verification email sent. Check your inbox.
)} {changeEmail.isError && (Failed to change email. Please try again.
diff --git a/src/page/workspace/create.tsx b/src/page/workspace/create.tsx index 49231e8..a580dfb 100644 --- a/src/page/workspace/create.tsx +++ b/src/page/workspace/create.tsx @@ -68,10 +68,10 @@ export function CreateWorkspaceDialog({