Skip to content

Commit

Permalink
fix: linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
schaertim committed Nov 12, 2024
1 parent e849396 commit 596a245
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ export const renderBadge = (store: StoreType) => {
type Story = StoryObj<{ store: StoreType }>;

export const Default: Story = {
render: (args) => renderBadge(args.store),
render: args => renderBadge(args.store),
};
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Args, StoryContext, StoryObj } from '@storybook/web-components';
import { useArgs } from '@storybook/preview-api';
import { html, nothing, TemplateResult } from 'lit';
import { MetaComponent } from '@root/types';
import { ifDefined } from 'lit/directives/if-defined.js';

const VALIDATION_STATE_MAP: Record<string, undefined | boolean> = {
'null': undefined,
Expand Down

0 comments on commit 596a245

Please sign in to comment.