Usage
On every section, we have a usage indicator. This is to inform you of the current usage of the individual features. You can click on the info icon to view the remaining usage.

Please note
When running the app in local mode (i.e) APP_ENV=local, the usage auth guard will be disabled, allowing continuous usage.
apps/api/src/guard/usage-limit.guard.ts
private isUsageAvailable(user: UserResponseType, featureName: keyof UsageRemainingType): boolean {
if (this.appConfigService.isLocal) {
// when in local dev mode, allow continuous usage
return true;
}
...
}