Commit 9c842d0a authored by boojack's avatar boojack

fix: remove axios withCredentials

parent 0dc37755
import axios from "axios"; import axios from "axios";
axios.defaults.withCredentials = true;
type ResponseObject<T> = { type ResponseObject<T> = {
data: T; data: T;
error?: string; error?: string;
...@@ -120,12 +118,11 @@ export function getTagList(tagFind?: TagFind) { ...@@ -120,12 +118,11 @@ export function getTagList(tagFind?: TagFind) {
} }
export async function getRepoStarCount() { export async function getRepoStarCount() {
const data = ( const { data } = await axios.get(`https://api.github.com/repos/usememos/memos`, {
await axios.get("https://api.github.com/repos/usememos/memos", { headers: {
headers: { Accept: "application/vnd.github.v3.star+json",
accept: "application/vnd.github+json", Authorization: "",
}, },
}) });
).data;
return data.stargazers_count as number; return data.stargazers_count as number;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment