@let policySections = policySections$ | async;
@let policiesEnabledMap = policiesEnabledMap$ | async;
@let organization = organization$ | async;
@let drawerEnabled = useDrawer();
@if (!policySections || !policiesEnabledMap || !organization) {
{{ "loading" | i18n }}
} @else {
@for (section of policySections; track section.category) {
{{ section.labelKey | i18n }}
@for (p of section.policies; track p.type) {
}
}
}