Skip to content

Commit

Permalink
tested dedupe: "cancel
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm authored Jul 2, 2024
1 parent d21cff8 commit bdd5b23
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webclient/components/AppSearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const url = computed(() => {
});
const { data, error } = await useFetch<SearchResponse>(url, {
key: "search",
dedupe: "defer",
dedupe: "cancel",
deep: false,
retry: 120,
retryDelay: 5000,
Expand Down
2 changes: 1 addition & 1 deletion webclient/pages/[view]/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const runtimeConfig = useRuntimeConfig();
const url = computed(() => `${runtimeConfig.public.apiURL}/api/get/${route.params.id}?lang=${locale.value}`);
const { data, error } = useFetch<DetailsResponse, string>(url, {
key: "details",
dedupe: "defer",
dedupe: "cancel",
deep: false,
retry: 120,
retryDelay: 5000,
Expand Down
2 changes: 1 addition & 1 deletion webclient/pages/search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const apiUrl = computed(() => {
});
const { data } = useFetch<SearchResponse>(apiUrl, {
key: "search",
dedupe: "defer",
dedupe: "cancel",
deep: false,
retry: 120,
retryDelay: 5000,
Expand Down

0 comments on commit bdd5b23

Please sign in to comment.