This commit is contained in:
Stijnus
2025-01-24 16:51:43 +01:00
parent 7378d7598b
commit b0fe1fc871
5 changed files with 28 additions and 7 deletions

View File

@@ -101,12 +101,15 @@ export default function ConnectionsTab() {
try {
setIsFetchingStats(true);
// Fetch repositories
const reposResponse = await fetch('https://api.github.com/user/repos?sort=updated&per_page=10', {
headers: {
Authorization: `Bearer ${token}`,
// Fetch repositories - only owned by the authenticated user
const reposResponse = await fetch(
'https://api.github.com/user/repos?sort=updated&per_page=10&affiliation=owner',
{
headers: {
Authorization: `Bearer ${token}`,
},
},
});
);
if (!reposResponse.ok) {
throw new Error('Failed to fetch repositories');

View File

@@ -6,7 +6,7 @@ import type { LogEntry } from '~/lib/stores/logs';
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from '~/components/ui/Collapsible';
import { Progress } from '~/components/ui/Progress';
import { ScrollArea } from '~/components/ui/ScrollArea';
import { Badge, type BadgeProps } from '~/components/ui/Badge';
import { Badge } from '~/components/ui/Badge';
import { cn } from '~/lib/utils';
interface SystemInfo {
@@ -373,11 +373,13 @@ export default function DebugTab() {
if (!appInfoResponse.ok) {
throw new Error('Failed to fetch webapp info');
}
const appData = (await appInfoResponse.json()) as Record<string, unknown>;
// Fetch git info
const gitInfoResponse = await fetch('/api/system/git-info');
let gitInfo: GitInfo | undefined;
if (gitInfoResponse.ok) {
gitInfo = (await gitInfoResponse.json()) as GitInfo;
}
@@ -385,6 +387,7 @@ export default function DebugTab() {
// Fetch GitHub repository info
const repoInfoResponse = await fetch('https://api.github.com/repos/stackblitz-labs/bolt.diy');
let repoInfo: WebAppInfo['repoInfo'] | undefined;
if (repoInfoResponse.ok) {
const repoData = (await repoInfoResponse.json()) as GitHubRepoResponse;
repoInfo = {

View File

@@ -1,6 +1,5 @@
'use client';
import * as React from 'react';
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
const Collapsible = CollapsiblePrimitive.Root;