Refactor: Remove server state files and update server log handling

- Deleted server-stopped, server.log, and server.pid files to clean up unused state.
- Updated game-page-client.tsx to enhance button accessibility with cursor-pointer class.
- Modified not-found.tsx, page.tsx, and profile/page.tsx for consistent cursor-pointer usage on links.
- Adjusted search/page.tsx and components/auth/*.tsx for improved button interactions with cursor-pointer.
- Refined navbar.tsx for better user experience with cursor-pointer on navigation links.
- Updated settings-security-tab.tsx for passkey management API endpoints and improved error handling.
- Enhanced saved-games components for better user interaction with cursor-pointer on buttons.
- General code cleanup and consistency improvements across various components.
This commit is contained in:
2026-04-26 12:09:37 -05:00
parent 18b9e5d0db
commit b0688f8f2a
35 changed files with 323 additions and 1631 deletions
+5 -5
View File
@@ -81,7 +81,7 @@ export function TiptapEditor({
<button
type="button"
onClick={() => editor.chain().focus().toggleBold().run()}
className={`p-1.5 rounded hover:bg-text/10 transition-colors ${
className={`p-1.5 rounded hover:bg-text/10 transition-colors cursor-pointer ${
editor.isActive("bold") ? "bg-text/10 text-primary" : "text-text/50"
}`}
>
@@ -90,7 +90,7 @@ export function TiptapEditor({
<button
type="button"
onClick={() => editor.chain().focus().toggleItalic().run()}
className={`p-1.5 rounded hover:bg-text/10 transition-colors ${
className={`p-1.5 rounded hover:bg-text/10 transition-colors cursor-pointer ${
editor.isActive("italic") ? "bg-text/10 text-primary" : "text-text/50"
}`}
>
@@ -100,7 +100,7 @@ export function TiptapEditor({
<button
type="button"
onClick={() => editor.chain().focus().toggleBulletList().run()}
className={`p-1.5 rounded hover:bg-text/10 transition-colors ${
className={`p-1.5 rounded hover:bg-text/10 transition-colors cursor-pointer ${
editor.isActive("bulletList") ? "bg-text/10 text-primary" : "text-text/50"
}`}
>
@@ -109,7 +109,7 @@ export function TiptapEditor({
<button
type="button"
onClick={() => editor.chain().focus().toggleOrderedList().run()}
className={`p-1.5 rounded hover:bg-text/10 transition-colors ${
className={`p-1.5 rounded hover:bg-text/10 transition-colors cursor-pointer ${
editor.isActive("orderedList") ? "bg-text/10 text-primary" : "text-text/50"
}`}
>
@@ -119,7 +119,7 @@ export function TiptapEditor({
<button
type="button"
onClick={toggleLink}
className={`p-1.5 rounded hover:bg-text/10 transition-colors ${
className={`p-1.5 rounded hover:bg-text/10 transition-colors cursor-pointer ${
editor.isActive("link") ? "bg-text/10 text-primary" : "text-text/50"
}`}
>