1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-05 19:15:30 -04:00

fixing header icons (once again)

This commit is contained in:
2025-05-22 10:50:46 -04:00
parent 9933d20868
commit f8974e9a92
7 changed files with 17 additions and 13 deletions
+1 -2
View File
@@ -1,5 +1,4 @@
import "dotenv/config";
import { env } from "@/lib/env";
import { eq } from "drizzle-orm";
import { graphql } from "@octokit/graphql";
import { db } from "@/lib/db";
@@ -8,7 +7,7 @@ import * as schema from "@/lib/db/schema";
// GitHub GraphQL API authentication
const graphqlWithAuth = graphql.defaults({
headers: {
authorization: `token ${env.GITHUB_TOKEN}`,
authorization: `token ${process.env.GITHUB_TOKEN}`,
},
});