I have some angular code that contains some inline styles that I need to remove. Reason being is we need this code to be CSP compliant and CSP has issues with inline styles.
<div class="ccav-notify-pannel-wrapper" *ngIf="ccavShowWarningPanel" [style.display] ="!collapseAccountOverview? 'inherit': none">
What is a different way I can implement this exact logic maybe in typescript without using inline styles?