Skip to content

Commit

Permalink
fix: flyover pegout summary order to show rootstock to bitcoin
Browse files Browse the repository at this point in the history
  • Loading branch information
annipi authored and alexjavabraz committed Sep 25, 2024
1 parent 58d6a76 commit c763ddf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/common/components/status/StatusSummary.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ export default defineComponent({
setup(props) {
const environmentContext = EnvironmentContextProviderService.getEnvironmentContext();
const columnOrder = computed(
() => (props.type === TxStatusType.PEGOUT ? { btc: 12, rsk: 1 } : { btc: 1, rsk: 12 }),
() => (props.type === TxStatusType.PEGOUT || props.type === TxStatusType.FLYOVER_PEGOUT
? { btc: 12, rsk: 1 } : { btc: 1, rsk: 12 }),
);
const status = useState<TxStatus>('status');
Expand Down

0 comments on commit c763ddf

Please sign in to comment.