Skip to content

Commit 81e85c1

Browse files
committed
fix typings and revert spacing
1 parent fda4a03 commit 81e85c1

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/components/options/CategorySkipOptionsComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export interface CategorySkipOptionsProps {
1313
category: Category;
1414
defaultColor?: string;
1515
defaultPreviewColor?: string;
16-
children?: React.ReactNode[];
16+
children?: React.ReactNode;
1717
}
1818

1919
export interface CategorySkipOptionsState {

src/components/options/UnsubmittedVideoListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { exportTimes, exportTimesAsHashParam } from "../../utils/exporter";
55

66
export interface UnsubmittedVideosListItemProps {
77
videoID: string;
8-
children?: React.ReactNode[];
8+
children?: React.ReactNode;
99
}
1010

1111
export interface UnsubmittedVideosListItemState {

src/render/RectangleTooltip.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export class RectangleTooltip {
3232
this.text = props.text;
3333
props.fontSize ??= "10px";
3434

35-
3635
this.container = document.createElement('div');
3736
props.htmlId ??= "sponsorRectangleTooltip" + props.text;
3837
this.container.id = props.htmlId;

0 commit comments

Comments
 (0)