Skip to content

Commit 1eeb652

Browse files
authored
fix(flat-components): loginTitle stories props LoginPanelProps to LoginTitleProps (#1584)
1 parent 797186b commit 1eeb652

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Meta, Story } from "@storybook/react";
22
import React from "react";
3-
import { LoginTitle } from ".";
4-
import { LoginPanelProps } from "..";
3+
import { LoginTitle, LoginTitleProps } from ".";
54

65
const storyMeta: Meta = {
76
title: "LoginPage/LoginTitle",
@@ -10,4 +9,4 @@ const storyMeta: Meta = {
109

1110
export default storyMeta;
1211

13-
export const Overview: Story<LoginPanelProps> = props => <LoginTitle {...props} />;
12+
export const Overview: Story<LoginTitleProps> = props => <LoginTitle {...props} />;

0 commit comments

Comments
 (0)