- {/* Header */}
-
-
- {/* GitHub App Required Alert */}
- {!isStatusLoading && !isGitHubAppInstalled && (
-
-
- GitHub App Required
-
-
- The Kilo GitHub App must be installed to use Auto Triage. The app automatically
- manages workflows and triggers triage on your issues.
-
-
-
-
-
-
- )}
-
- {/* Tabbed Content */}
-
-
-
-
- Config
-
-
-
- Tickets
-
-
-
- {/* Configuration Tab */}
-
-
-
-
- {/* Tickets Tab */}
-
- {isStatusLoading || isGitHubAppInstalled ? (
-
- ) : (
-
-
- No Tickets Yet
-
- Install the GitHub App and configure your auto-triage settings to see triage tickets
- here.
-
-
- )}
-
-
-
- );
-}
diff --git a/src/app/(app)/auto-triage/page.tsx b/src/app/(app)/auto-triage/page.tsx
index d2daf867e..1356b5dfe 100644
--- a/src/app/(app)/auto-triage/page.tsx
+++ b/src/app/(app)/auto-triage/page.tsx
@@ -1,5 +1,5 @@
import { getUserFromAuthOrRedirect } from '@/lib/user.server';
-import { AutoTriagePageClient } from './AutoTriagePageClient';
+import { AutoTriagePageClient } from '@/components/auto-triage/AutoTriagePageClient';
type AutoTriagePageProps = {
searchParams: Promise<{ success?: string; error?: string }>;
@@ -7,14 +7,7 @@ type AutoTriagePageProps = {
export default async function PersonalAutoTriagePage({ searchParams }: AutoTriagePageProps) {
const search = await searchParams;
- const user = await getUserFromAuthOrRedirect('/users/sign_in?callbackPath=/auto-triage');
+ await getUserFromAuthOrRedirect('/users/sign_in?callbackPath=/auto-triage');
- return (
-