Skip to content

Commit 9b7f29e

Browse files
committed
dplc size limit
1 parent 216e92f commit 9b7f29e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/util/assertions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const isPositiveNumber = (num) => {
1010
};
1111

1212
export const isDPLCSize = (num) => {
13-
return clamp(isPositiveNumber(num), 1, 16);
13+
return clamp(isPositiveNumber(num), 1, 256);
1414
};
1515

1616
export const isWidthHeight = (num) => {

0 commit comments

Comments
 (0)