Skip to content

Commit 497f831

Browse files
authored
fix(app): liquid class colume compatibility check in QT (#19738)
Removes volume minimum check in QT liquid class compatibility logic. The API has no minimum volume set, so we should allow arbitrarily low volumes above 0. Closes RQA-4697
1 parent 2fbb3c3 commit 497f831

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/organisms/ODD/QuickTransferFlow/utils/checkLiquidClassCompatibility.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const checkLiquidClassCompatibility = (
3737
return { incompatible: true }
3838
}
3939

40-
if (state.volume <= MINIMUM_LIQUID_CLASS_VOLUME) {
40+
if (state.volume < MINIMUM_LIQUID_CLASS_VOLUME) {
4141
return { incompatible: true, volumeIncompatible: true }
4242
}
4343

0 commit comments

Comments
 (0)