1
0

feat: enable infinite nesting always, remove setting

This commit is contained in:
kolaente
2024-02-09 14:26:42 +01:00
parent a0e770438d
commit 0f28767acc
4 changed files with 1 additions and 19 deletions

View File

@ -1,7 +0,0 @@
export function canNestProjectDeeper(level: number) {
if (level < 2) {
return true
}
return level >= 2 && window.PROJECT_INFINITE_NESTING_ENABLED
}