()
| 201 | } |
| 202 | |
| 203 | export const getSeatCap = (): number | undefined => { |
| 204 | const offlineLicense = getValidOfflineLicense(); |
| 205 | if (offlineLicense?.seats && offlineLicense.seats > 0) { |
| 206 | return offlineLicense.seats; |
| 207 | } |
| 208 | |
| 209 | return undefined; |
| 210 | } |
no test coverage detected