Files
hoerdle/app/[locale]/curator/specials/page.tsx
Hördle Bot 1242643a89 feat: refine integration tests and fix ci stability
- Update Playwright tests for Admin, Auth, Gameplay, and Curator to be more robust.
- Fix Admin login API to support plain text env vars for testing convenience.
- Implement mock Login in Curator page for integration testing.
- Add placeholder for Curator Specials page to resolve build errors.
- Add CSS injection to tests to hide Next.js dev overlays intercepting clicks.
- Improve test selectors and timeouts for better stability in CI/Webkit.
2025-12-06 19:16:43 +01:00

11 lines
219 B
TypeScript

export default function CuratorSpecialsPage() {
return (
<div style={{ padding: '2rem' }}>
<h1>Curator Specials</h1>
<p>Component implementation missing</p>
</div>
);
}