From 08afd397bc22421b6eca11103a7b4625ea150466 Mon Sep 17 00:00:00 2001 From: Nate Kelley Date: Mon, 4 Aug 2025 10:44:16 -0600 Subject: [PATCH] route id correctly --- apps/web/src/api/buster_rest/chats/requests.test.ts | 3 ++- .../(chat_experience)/reports/{ => [reportId]}/layout.tsx | 0 .../(chat_experience)/reports/{ => [reportId]}/loading.tsx | 0 .../(chat_experience)/reports/{ => [reportId]}/page.tsx | 0 4 files changed, 2 insertions(+), 1 deletion(-) rename apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/{ => [reportId]}/layout.tsx (100%) rename apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/{ => [reportId]}/loading.tsx (100%) rename apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/{ => [reportId]}/page.tsx (100%) diff --git a/apps/web/src/api/buster_rest/chats/requests.test.ts b/apps/web/src/api/buster_rest/chats/requests.test.ts index df73b88de..a7e4d785e 100644 --- a/apps/web/src/api/buster_rest/chats/requests.test.ts +++ b/apps/web/src/api/buster_rest/chats/requests.test.ts @@ -32,7 +32,8 @@ describe('Chat API Requests', () => { latest_file_id: 'file-1', latest_file_type: 'dashboard', latest_version_number: 1, - latest_file_name: 'Test File' + latest_file_name: 'Test File', + is_shared: false } ]; diff --git a/apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/layout.tsx b/apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/[reportId]/layout.tsx similarity index 100% rename from apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/layout.tsx rename to apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/[reportId]/layout.tsx diff --git a/apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/loading.tsx b/apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/[reportId]/loading.tsx similarity index 100% rename from apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/loading.tsx rename to apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/[reportId]/loading.tsx diff --git a/apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/page.tsx b/apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/[reportId]/page.tsx similarity index 100% rename from apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/page.tsx rename to apps/web/src/app/app/(primary_layout)/(chat_experience)/reports/[reportId]/page.tsx