Fix precision issue in cardBuilder

This commit is contained in:
Bill Thornton 2022-02-13 01:27:10 -05:00
parent 3ccb4fabb4
commit 481784622a

View File

@ -145,7 +145,7 @@ import ServerConnections from '../ServerConnections';
return 100 / 14.2857142857;
}
if (screenWidth >= 1200) {
return 100 / 16.666666666666666666;
return 100 / 16.66666667;
}
if (screenWidth >= 1000) {
return 5;