We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcf7a5e commit f790653Copy full SHA for f790653
composables/useLimboSearch.js
@@ -771,7 +771,7 @@ export const useLimboSearch = async (options = {}) => {
771
} catch (error) {
772
// Handle any unexpected errors during the search process
773
// Don't log AbortError as these are intentional cancellations
774
- if (error.name !== 'AbortError') {
+ if (error.name !== 'AbortError' && !activeRequestController.value?.signal?.aborted) {
775
console.error('Unexpected error during search:', error);
776
state.value.isLoading = false;
777
searchData.value.error = {
0 commit comments