Skip to content

Commit

Permalink
Merge pull request #995 from alleslabs/fix/remove-retry-pool
Browse files Browse the repository at this point in the history
  • Loading branch information
songwongtp committed Jun 26, 2024
2 parents 1c59a28 + a614bdf commit 233bf32
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Bug fixes

- [#995](https://github.com/alleslabs/celatone-frontend/pull/995) Remove unnecessary retries and refetch on window focus
- [#988](https://github.com/alleslabs/celatone-frontend/pull/988) Fix total asset value and assets in json
- [#991](https://github.com/alleslabs/celatone-frontend/pull/991) Fix code select section heading label
- [#986](https://github.com/alleslabs/celatone-frontend/pull/986) Fix bugbash lite version (creator, sorting name in validator)
Expand Down
1 change: 1 addition & 0 deletions src/lib/services/move/poolService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export const useMovePoolInfos = ({ withPrices }: { withPrices: boolean }) => {
async () => getMovePoolInfos(moveEndpoint),
{
enabled: moveConfig.enabled,
retry: false,
refetchOnWindowFocus: false,
}
);
Expand Down
2 changes: 2 additions & 0 deletions src/lib/services/publicProjectService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ export const usePublicProjects = (): UseQueryResult<PublicProjectInfo[]> => {
queryFn,
{
enabled: projectConfig.enabled,
retry: false,
refetchOnWindowFocus: false,
}
);
};
Expand Down

0 comments on commit 233bf32

Please sign in to comment.