diff --git a/frontend/src/app/git-projects/repositories/page.tsx b/frontend/src/app/git-projects/repositories/page.tsx
index c2d1609..43aaef5 100644
--- a/frontend/src/app/git-projects/repositories/page.tsx
+++ b/frontend/src/app/git-projects/repositories/page.tsx
@@ -53,7 +53,7 @@ export default function ForgejoRepositoriesPage() {
if (auth.isSignedIn) {
fetchRepositories();
}
- }, [auth.isSignedIn, auth.getToken]);
+ }, [auth.isSignedIn]);
const repositoryName = (repository: ForgejoRepository) =>
repository.display_name || `${repository.owner}/${repository.repo}`;
diff --git a/frontend/src/components/git/ForgejoIssuesTable.tsx b/frontend/src/components/git/ForgejoIssuesTable.tsx
index e43e74d..5b33a68 100644
--- a/frontend/src/components/git/ForgejoIssuesTable.tsx
+++ b/frontend/src/components/git/ForgejoIssuesTable.tsx
@@ -130,15 +130,6 @@ export function ForgejoIssuesTable({
);
},
},
- {
- accessorKey: "author",
- header: "Author",
- cell: ({ row }) => (
-
- {row.original.author || "Unknown"}
-
- ),
- },
{
accessorKey: "labels",
header: "Labels",
@@ -161,6 +152,15 @@ export function ForgejoIssuesTable({
);
},
},
+ {
+ accessorKey: "author",
+ header: "Author",
+ cell: ({ row }) => (
+
+ {row.original.author || "Unknown"}
+
+ ),
+ },
{
accessorKey: "forgejo_updated_at",
header: "Updated",