From eac93a6b82f8d344458f4cdd3110d2aede19fe26 Mon Sep 17 00:00:00 2001 From: Henry Winkel Date: Sat, 16 May 2026 15:02:08 +0200 Subject: [PATCH] Routing: add /stocks/:ticker alias to analyze.ticker for compatibility with tests\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- app/routes/stocks.$ticker.tsx | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 app/routes/stocks.$ticker.tsx diff --git a/app/routes/stocks.$ticker.tsx b/app/routes/stocks.$ticker.tsx new file mode 100644 index 0000000..d2b1957 --- /dev/null +++ b/app/routes/stocks.$ticker.tsx @@ -0,0 +1,2 @@ +export { loader } from "./analyze.ticker"; +export { default } from "./analyze.ticker";