1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-21 11:35:34 +01:00

[PM-11407] Fix story for danger zone component (#11817)

* Fix story for danger zone component

* fix linting
This commit is contained in:
Brandon Treston 2024-11-01 13:43:55 -04:00 committed by GitHub
parent a4c6731021
commit bb79fdbdb3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,3 +1,4 @@
import { CommonModule } from "@angular/common";
import { importProvidersFrom } from "@angular/core";
import { Meta, StoryObj, applicationConfig, moduleMetadata } from "@storybook/angular";
@ -13,7 +14,7 @@ export default {
component: DangerZoneComponent,
decorators: [
moduleMetadata({
imports: [ButtonModule, JslibModule],
imports: [ButtonModule, JslibModule, CommonModule],
}),
applicationConfig({
providers: [importProvidersFrom(PreloadedEnglishI18nModule)],