Skip to content
Merged
Show file tree
Hide file tree
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 epicshop/epic-me/app/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { type RouteConfig, index, route } from '@react-router/dev/routes'
export default [
index('routes/index.tsx'),
route('/authorize', 'routes/authorize.tsx'),
route('/whoami', 'routes/whoami.tsx'),
route('/healthcheck', 'routes/healthcheck.tsx'),
route('/db-api', 'routes/db-api.tsx'),
route('/introspect', 'routes/introspect.tsx'),
] satisfies RouteConfig
3 changes: 3 additions & 0 deletions epicshop/epic-me/app/routes/healthcheck.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export async function loader() {
return new Response('ok')
}
4 changes: 2 additions & 2 deletions epicshop/epic-me/app/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export default function Home({ loaderData }: Route.ComponentProps) {

{user.entries.length > 0 ? (
<div className="space-y-3">
<h4 className="text-sm font-medium uppercase tracking-wide text-gray-600 dark:text-gray-400">
<h4 className="text-sm font-medium tracking-wide text-gray-600 uppercase dark:text-gray-400">
Entries ({user.entries.length})
</h4>
<div className="grid gap-3">
Expand Down Expand Up @@ -270,7 +270,7 @@ export default function Home({ loaderData }: Route.ComponentProps) {

{user.tags.length > 0 && (
<div className="mt-6">
<h4 className="mb-3 text-sm font-medium uppercase tracking-wide text-gray-600 dark:text-gray-400">
<h4 className="mb-3 text-sm font-medium tracking-wide text-gray-600 uppercase dark:text-gray-400">
Tags ({user.tags.length})
</h4>
<div className="grid gap-2">
Expand Down
249 changes: 0 additions & 249 deletions epicshop/epic-me/app/routes/whoami.tsx

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "exercises_01.start_01.problem",
"name": "exercises_01.start_01.solution",
"private": true,
"type": "module",
"scripts": {
Expand Down
4 changes: 0 additions & 4 deletions exercises/02.start/01.problem/tsconfig.json

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "exercises_02.start_01.problem",
"name": "exercises_02.start_01.solution",
"private": true,
"type": "module",
"scripts": {
Expand All @@ -25,6 +25,7 @@
"@types/node": "^24.1.0",
"cross-env": "^10.0.0",
"eslint": "^9.32.0",
"execa": "^9.5.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
Expand Down
Loading
Loading