Skip to content

Commit ca3046c

Browse files
committed
chore: extra enum cleanup
1 parent 4b8175e commit ca3046c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/client/src/views/swap/SwapStatus.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,12 @@ export const SwapStatus = () => {
224224
const cleaned = enriched.filter(s => {
225225
if (!s.boltz?.status) return true;
226226
const status = s.boltz.status;
227-
if (status === SETTLED || status === REFUNDED || status === EXPIRED) {
227+
if (
228+
status === SETTLED ||
229+
status === REFUNDED ||
230+
status === EXPIRED ||
231+
status === INVOICE_EXPIRED
232+
) {
228233
return false;
229234
}
230235
return true;

0 commit comments

Comments
 (0)