@@ -367,7 +374,7 @@ function TxoList(props: Props) {
>
}
value={type || 'all'}
- onChange={(e) => handleChange({ dkey: TXO.TYPE, value: e.target.value, tab })}
+ onChange={(e) => handleChange({ dkey: TXO.TYPE, value: e.target.value, tab, currency: 'fiat' })}
>
{Object.values(TXO.DROPDOWN_TYPES).map((v) => {
const stringV = String(v);
@@ -386,7 +393,7 @@ function TxoList(props: Props) {
name="subtype"
label={__('Payment Type')}
value={subtype || 'all'}
- onChange={(e) => handleChange({ dkey: TXO.SUB_TYPE, value: e.target.value, tab })}
+ onChange={(e) => handleChange({ dkey: TXO.SUB_TYPE, value: e.target.value, tab, currency: 'fiat' })}
>
{Object.values(TXO.DROPDOWN_SUBTYPES).map((v) => {
const stringV = String(v);
@@ -406,7 +413,7 @@ function TxoList(props: Props) {
)}
-
- {!isFetchingTransactions && transactionsFile === null && (
-
- )}
-
- fetchTransactions()}
- progressMsg={isFetchingTransactions ? __('Fetching data') : ''}
- />
-
-
fetchTxoPage()} />
-