Spaces:
Running
Running
File size: 162 Bytes
11486ce | 1 2 3 4 | export function hasReachedEditSourceImageLimit(input: { currentCount: number; maxImages: number }): boolean {
return input.currentCount >= input.maxImages;
}
|