Skip to content

Commit

Permalink
chore(deps): bump tar from 6.2.0 to 6.2.1 (#244)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jakub Jastrzębski <jakub.jastrzebski@pm.me>
  • Loading branch information
dependabot[bot] and KubaJastrz authored May 29, 2024
1 parent 2692daa commit ce80b46
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/mocks/npms-suggestions.response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ export function npmsSuggestionsReact() {
},
];
return http.get("https://api.npms.io/v2/search/suggestions", async () => {
await delay();
await delay(5000);
return HttpResponse.json(data);
});
}

export function npmsSuggestionsEmpty() {
const data: SuggestionsResponseData[] = [];
return http.get("https://api.npms.io/v2/search/suggestions", async () => {
await delay();
await delay(5000);
return HttpResponse.json(data);
});
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"e2e": "playwright test",
"fix": "biome check --apply --no-errors-on-unmatched .",
"lint-staged": "lint-staged",
"prepare": "husky install",
"prepare": "husky",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc"
},
Expand Down
10 changes: 6 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ce80b46

Please sign in to comment.