Skip to content

Commit

Permalink
Merge pull request #197 from Exifly/main
Browse files Browse the repository at this point in the history
Hot Fix v2.0.1
  • Loading branch information
gdjohn4s authored Jun 1, 2023
2 parents cc962ed + 0a74edc commit 63b67e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nuxt-app",
"version": "2.0.0",
"version": "2.0.1",
"private": true,
"scripts": {
"build": "nuxt build",
Expand Down
2 changes: 1 addition & 1 deletion frontend/services/GithubServices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class GithubService {

async repoStars(): Promise<number> {
const repo: globalThis.Ref<any> = ref(null);
const { data: fetchedData, error } = await useFetch<any>("https://api.github.com/repos/exifly/apivault");
const { data: fetchedData, error } = await useLazyFetch<any>("https://api.github.com/repos/exifly/apivault");
if (!error) {
let num: globalThis.Ref<any> = ref(0);
return num.value;
Expand Down

0 comments on commit 63b67e2

Please sign in to comment.