Skip to content

Commit

Permalink
Merge pull request #278 from ocruze/main
Browse files Browse the repository at this point in the history
fix: typo in Tile.tsx #277
  • Loading branch information
garronej authored Jul 15, 2024
2 parents cab3f34 + e8158db commit 1cd8ad0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Tile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ export type TileProps = {
noBackground?: boolean;
disabled?: boolean;
style?: CSSProperties;
} & (TileNextProps.WithLink | TileNextProps.WithButton | TileNextProps.Unclickable);
} & (TileProps.WithLink | TileProps.WithButton | TileProps.Unclickable);

export namespace TileNextProps {
export namespace TileProps {
export type Unclickable = {
linkProps?: never;
buttonProps?: never;
Expand Down Expand Up @@ -226,6 +226,6 @@ export const Tile = memo(
})
);

Tile.displayName = symToStr({ TileNext: Tile });
Tile.displayName = symToStr({ Tile });

export default Tile;

0 comments on commit 1cd8ad0

Please sign in to comment.