Skip to content

Commit

Permalink
Remove duplicated import
Browse files Browse the repository at this point in the history
  • Loading branch information
imagoiq committed Nov 20, 2023
1 parent 305af7e commit 6b8b5d7
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Args, StoryObj } from '@storybook/web-components';
import { html } from 'lit';
import { spreadArgs } from '../../../utils';
import { bombArgs } from '../../../utils';
import { spreadArgs, bombArgs } from '../../../utils';
import alertMeta from './standard-html/alert.stories';
import { getAlertClasses } from './standard-html/getAlertClasses';

Expand All @@ -26,7 +25,7 @@ export const Alert: Story = {
.map(args => ({ ...args, show: true } as Args))
.map(
args => html`
<div class=${getAlertClasses(args)} role="alert">
<div class="${getAlertClasses(args)}" role="alert">
${args.dismissible || args.fixed
? html`
<button class="btn-close">
Expand All @@ -39,7 +38,7 @@ export const Alert: Story = {
<post-icon
aria-hidden="true"
class="alert-icon"
name=${args.icon}
name="${args.icon}"
></post-icon>
`
: null}
Expand Down

0 comments on commit 6b8b5d7

Please sign in to comment.