From 80d9805a6d1400558f2582f1fe748a268c27f15b Mon Sep 17 00:00:00 2001 From: songwongtp <16089160+songwongtp@users.noreply.github.com> Date: Wed, 30 Aug 2023 11:42:59 +0700 Subject: [PATCH] fix: tx relation selector --- CHANGELOG.md | 1 + src/lib/components/TxRelationSelection.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d139d7c63..d14de0e37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -92,6 +92,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Bug fixes +- [#511](https://github.com/alleslabs/celatone-frontend/pull/511) Fix tx relation selector incorrect option - [#499](https://github.com/alleslabs/celatone-frontend/pull/499) Fix responsive for icns and add cl pool icon - [#506](https://github.com/alleslabs/celatone-frontend/pull/506) Fix simulation bugs - [#504](https://github.com/alleslabs/celatone-frontend/pull/504) Fix response Json schema UI diff --git a/src/lib/components/TxRelationSelection.tsx b/src/lib/components/TxRelationSelection.tsx index 76dfd3dd6..12d493999 100644 --- a/src/lib/components/TxRelationSelection.tsx +++ b/src/lib/components/TxRelationSelection.tsx @@ -46,7 +46,7 @@ export const TxRelationSelection = ({ case undefined: initialValue = RelationType.ALL; break; - case false: + case true: initialValue = RelationType.SIGNING; break; default: