Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/routes/users/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function UsersRoute({ loaderData }: Route.ComponentProps) {

return (
<div className="container mt-36 mb-48 flex flex-col items-center justify-center gap-6">
<h1 className="text-h1">Epic Notes Users</h1>
<h1 className="text-h1">Epic Notes Users Test</h1>
Copy link

Copilot AI Dec 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding "Test" to the heading text creates a mismatch with the existing e2e test in tests/e2e/search.test.ts at line 11, which expects the exact text "Epic Notes Users". This will cause the test to fail. Additionally, this change appears to be for temporary verification purposes based on the PR title, but adding test-related text to production UI is not a recommended practice. If this is truly needed for verification, consider updating the corresponding test or using a different verification approach that doesn't modify user-facing text.

Suggested change
<h1 className="text-h1">Epic Notes Users Test</h1>
<h1 className="text-h1">Epic Notes Users</h1>

Copilot uses AI. Check for mistakes.
<div className="w-full max-w-[700px]">
<SearchBar status={loaderData.status} autoFocus autoSubmit />
</div>
Expand Down