Skip to content

Commit

Permalink
I should just be using pnpm link man
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Jan 18, 2025
1 parent a342c4f commit 3392eed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonlight-mod/mappings",
"version": "1.1.3",
"version": "1.1.4",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/mappings/discord/components/common/BaseHeaderBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export type HeaderBarTitleProps = {
};
export type Title = ComponentType<HeaderBarTitleProps>;

export type Divider = ComponentType<{ className: string }>;
export type Divider = ComponentType<{ className?: string }>;

export type Caret = ComponentType<{ direction?: "left" | "right" }>;

Expand Down
2 changes: 1 addition & 1 deletion src/mappings/discord/components/common/PanelButton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { IconComponent, TooltipColors } from "./index";

export type PanelButtonProps = {
tooltipText?: ReactNode;
children: ReactNode;
children?: ReactNode;
onContextMenu?: (event: MouseEvent) => void;
onClick?: (event: MouseEvent) => void;
disabled?: boolean;
Expand Down

0 comments on commit 3392eed

Please sign in to comment.