Skip to content

Commit

Permalink
chore: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
blunteshwar committed Dec 18, 2024
1 parent ecf8ccb commit ca1e3ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/story-decorator/decorator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ governing permissions and limitations under the License.

import { html, render, TemplateResult } from '@spectrum-web-components/base';
import './sp-story-decorator.js';
import { Parameters, Renderer, StoryContext } from '@storybook/csf';

export const themeStyles = html`
<style>
Expand All @@ -32,8 +33,7 @@ export const swcThemeDecoratorWithConfig =
({ bundled } = { bundled: true }) =>
(
story: () => TemplateResult,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
context: import('@storybook/csf').StoryContext<any, any>
context: StoryContext<Renderer, Parameters>
) => {
if (!bundled) {
requestAnimationFrame(() => {
Expand Down

0 comments on commit ca1e3ff

Please sign in to comment.