## Summary - Fixed unescaped apostrophes in JSX text that were causing ESLint errors - These errors were preventing the production build from completing on Railway ## Changes - `app/[locale]/error.tsx`: Escaped apostrophe in "couldn't" - `app/[locale]/not-found.tsx`: Escaped apostrophes in "you're" and "couldn't" - `app/[locale]/unauthorized/page.tsx`: Escaped apostrophe in "don't" ## Test plan - [x] ESLint errors resolved locally - [ ] Railway deployment succeeds after merge 🤖 Generated with [Claude Code](https://claude.ai/code)
23 lines
No EOL
624 B
TypeScript
23 lines
No EOL
624 B
TypeScript
import { Metadata } from 'next'
|
|
import Link from 'next/link'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Unauthorized / granblue.team',
|
|
description: "You don't have permission to perform that action"
|
|
}
|
|
|
|
export default function UnauthorizedPage() {
|
|
return (
|
|
<div className="error-container">
|
|
<div className="error-content">
|
|
<h1>Unauthorized</h1>
|
|
<p>You don't have permission to perform that action</p>
|
|
<div className="error-actions">
|
|
<Link href="/teams" className="button primary">
|
|
Browse teams
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
} |