Skip to content

Commit 1cd8ad0

Browse files
authored
Merge pull request #278 from ocruze/main
fix: typo in Tile.tsx #277
2 parents cab3f34 + e8158db commit 1cd8ad0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Tile.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ export type TileProps = {
5353
noBackground?: boolean;
5454
disabled?: boolean;
5555
style?: CSSProperties;
56-
} & (TileNextProps.WithLink | TileNextProps.WithButton | TileNextProps.Unclickable);
56+
} & (TileProps.WithLink | TileProps.WithButton | TileProps.Unclickable);
5757

58-
export namespace TileNextProps {
58+
export namespace TileProps {
5959
export type Unclickable = {
6060
linkProps?: never;
6161
buttonProps?: never;
@@ -226,6 +226,6 @@ export const Tile = memo(
226226
})
227227
);
228228

229-
Tile.displayName = symToStr({ TileNext: Tile });
229+
Tile.displayName = symToStr({ Tile });
230230

231231
export default Tile;

0 commit comments

Comments
 (0)