feature/create-place #8

Merged
behnam merged 5 commits from feature/create-place into develop 2023-05-30 13:07:57 +00:00
Showing only changes of commit ea8bcae9df - Show all commits

View File

@ -10,6 +10,9 @@ export default class SwrBoundary implements StateManagementProvider {
isLoading: boolean; isLoading: boolean;
error?: string | undefined; error?: string | undefined;
} { } {
return useSwr(key, httpHandler); return useSwr(key, httpHandler, {
revalidateOnFocus: false,
errorRetryCount: 3,
});
} }
} }